From 480f3062aaee4316bf3470af1d76332b29b568df Mon Sep 17 00:00:00 2001 From: Spun Nakandala Date: Mon, 17 Jun 2013 22:53:57 +0530 Subject: [PATCH 01/52] long if conditions transfered to the parser_analyzer.inc.php to initialize variables --- libraries/parse_analyze.inc.php | 25 +++++++++++++++++++++++++ sql.php | 15 ++------------- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/libraries/parse_analyze.inc.php b/libraries/parse_analyze.inc.php index 78f58987dc..25373ed0cd 100644 --- a/libraries/parse_analyze.inc.php +++ b/libraries/parse_analyze.inc.php @@ -73,6 +73,31 @@ $is_count = isset($analyzed_sql[0]['queryflags']['is_count']); // check for a real SELECT ... FROM $is_select = isset($analyzed_sql[0]['queryflags']['select_from']); +// checks whether the sorting order should be remembered +if ($GLOBALS['cfg']['RememberSorting'] + && ! ($is_count || $is_export || $is_func || $is_analyse) + && isset($analyzed_sql[0]['select_expr']) + && (count($analyzed_sql[0]['select_expr']) == 0) + && isset($analyzed_sql[0]['queryflags']['select_from']) + && count($analyzed_sql[0]['table_ref']) == 1 +) { + $is_remember_sorting_order = true; +} else { + $is_remember_sorting_order = false; +} + +// checks whether a LIMIT clause should be added to the query +if (($_SESSION['tmp_user_values']['max_rows'] != 'all') + && ! ($is_count || $is_export || $is_func || $is_analyse) + && isset($analyzed_sql[0]['queryflags']['select_from']) + && ! isset($analyzed_sql[0]['queryflags']['offset']) + && empty($analyzed_sql[0]['limit_clause']) +) { + $is_append_limit_clause = true; +} else { + $is_append_limit_clause = false; +} + // If the query is a Select, extract the db and table names and modify // $db and $table, to have correct page headers, links and left frame. // db and table name may be enclosed with backquotes, db is optionnal, diff --git a/sql.php b/sql.php index 1f0fda58b8..ebc0e5a3ae 100644 --- a/sql.php +++ b/sql.php @@ -313,24 +313,13 @@ if (isset($_REQUEST['btnDrop']) && $_REQUEST['btnDrop'] == __('No')) { $full_sql_query = $sql_query; // Handle remembered sorting order, only for single table query -if ($GLOBALS['cfg']['RememberSorting'] - && ! ($is_count || $is_export || $is_func || $is_analyse) - && isset($analyzed_sql[0]['select_expr']) - && (count($analyzed_sql[0]['select_expr']) == 0) - && isset($analyzed_sql[0]['queryflags']['select_from']) - && count($analyzed_sql[0]['table_ref']) == 1 -) { +if ($is_remember_sorting_order) { PMA_handleSortOrder($db, $table, $analyzed_sql, $full_sql_query); } $sql_limit_to_append = ''; // Do append a "LIMIT" clause? -if (($_SESSION['tmp_user_values']['max_rows'] != 'all') - && ! ($is_count || $is_export || $is_func || $is_analyse) - && isset($analyzed_sql[0]['queryflags']['select_from']) - && ! isset($analyzed_sql[0]['queryflags']['offset']) - && empty($analyzed_sql[0]['limit_clause']) -) { +if ($is_append_limit_clause) { $sql_limit_to_append = ' LIMIT ' . $_SESSION['tmp_user_values']['pos'] . ', ' . $_SESSION['tmp_user_values']['max_rows'] . " "; $full_sql_query = PMA_getSqlWithLimitClause( From 9d654bc1727fc01a98c3b27e9fcf4a5d55f73776 Mon Sep 17 00:00:00 2001 From: Spun Nakandala Date: Mon, 17 Jun 2013 23:28:45 +0530 Subject: [PATCH 02/52] PMA_getHtmlForBookmark method added to the sql.lib.php --- libraries/sql.lib.php | 51 +++++++++++++++++++++++++++++++++++++++++++ sql.php | 41 +++------------------------------- 2 files changed, 54 insertions(+), 38 deletions(-) diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index f92d15e34e..f5bdc23400 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -648,4 +648,55 @@ function PMA_getHtmlForOptionsList($values, $selected_values) } return $options; } + +/** + * Get HTML for the Bookmark form + * + * @param string $db the current database + * @param string $goto goto page url + * @param string $bkm_sql_query the query to be bookmarked + */ +function PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query) +{ + $html = '
'; + $html .= PMA_generate_common_hidden_inputs(); + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= '
'; + $html .= ''; + $html .= PMA_Util::getIcon( + 'b_bookmark.png', __('Bookmark this SQL query'), true + ); + $html .= ''; + $html .= '
'; + $html .= ''; + $html .= ''; + $html .= '
'; + $html .= '
'; + $html .= ''; + $html .= ''; + $html .= '
'; + $html .= '
'; + $html .= '
'; + $html .= '
'; + $html .= ''; + $html .= ''; + $html .= '
'; + $html .= '
'; + + return $html; +} ?> diff --git a/sql.php b/sql.php index ebc0e5a3ae..a9961f5364 100644 --- a/sql.php +++ b/sql.php @@ -1007,45 +1007,10 @@ if ((0 == $num_rows && 0 == $unlim_num_rows) || $is_affected) { . PMA_generate_common_url($db, $table) . '&sql_query=' . urlencode($sql_query) . '&id_bookmark=1'; - - $html_output .= '
'; - $html_output .= PMA_generate_common_hidden_inputs(); - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= '
'; - $html_output .= ''; - $html_output .= PMA_Util::getIcon( - 'b_bookmark.png', __('Bookmark this SQL query'), true + $bkm_sql_query = urlencode( + isset($complete_query) ? $complete_query : $sql_query ); - $html_output .= ''; - $html_output .= '
'; - $html_output .= ''; - $html_output .= ''; - $html_output .= '
'; - $html_output .= '
'; - $html_output .= ''; - $html_output .= ''; - $html_output .= '
'; - $html_output .= '
'; - $html_output .= '
'; - $html_output .= '
'; - $html_output .= ''; - $html_output .= ''; - $html_output .= '
'; - $html_output .= '
'; + $html_output .= PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query); } // end bookmark support // Do print the page if required From c1bd633a8a87d20b2de67cbfe36f52fff66818b6 Mon Sep 17 00:00:00 2001 From: Spun Nakandala Date: Tue, 18 Jun 2013 13:11:06 +0530 Subject: [PATCH 03/52] This bug is not relevant to the current master --- sql.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sql.php b/sql.php index a9961f5364..2bb7ba19a9 100644 --- a/sql.php +++ b/sql.php @@ -472,18 +472,12 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) { // Checks if the current database has changed // This could happen if the user sends a query like "USE `database`;" - /** - * commented out auto-switching to active database - really required? - * bug #2558 win: table list disappears (mixed case db names) - * https://sourceforge.net/p/phpmyadmin/bugs/2558/ - * @todo RELEASE test and comit or rollback before release - $current_db = $GLOBALS['dbi']->fetchValue('SELECT DATABASE()'); + /*$current_db = $GLOBALS['dbi']->fetchValue('SELECT DATABASE()'); if ($db !== $current_db) { $db = $current_db; $reload = 1; } - unset($current_db); - */ + unset($current_db);*/ // tmpfile remove after convert encoding appended by Y.Kawada if (function_exists('PMA_Kanji_fileConv') From 9612ff150a12cd7ac192f65000d3f75ee7c7739c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Tue, 18 Jun 2013 17:36:08 +0530 Subject: [PATCH 04/52] Single click on relational link should lead to the foreign record --- js/ajax.js | 2 +- js/makegrid.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ajax.js b/js/ajax.js index eab0e842ae..5b99c3f198 100644 --- a/js/ajax.js +++ b/js/ajax.js @@ -128,7 +128,7 @@ var AJAX = { // leave the browser deal with it natively (e.g: file download) // or leave an existing ajax event handler present elsewhere deal with it var href = $(this).attr('href'); - if (event.shiftKey || event.ctrlKey) { + if (typeof event != 'undefined' && (event.shiftKey || event.ctrlKey)) { return true; } else if ($(this).attr('target')) { return true; diff --git a/js/makegrid.js b/js/makegrid.js index 3a9ebb619c..f81518d789 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -1634,7 +1634,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi e.preventDefault(); // get the click count and increase var clicks = $cell.data('clicks'); - clicks = (clicks === null) ? 1 : clicks + 1; + clicks = (typeof clicks === 'undefined') ? 1 : clicks + 1; if (clicks == 1) { // if there are no previous clicks, From 71c42ba66de66310203324dec508bedc07e7acaa Mon Sep 17 00:00:00 2001 From: Yungu Kim Date: Tue, 18 Jun 2013 13:51:40 +0200 Subject: [PATCH 05/52] Translated using Weblate (Korean) Currently translated at 67.3% (1800 of 2675) --- po/ko.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/ko.po b/po/ko.po index afb4040350..0fff625f24 100644 --- a/po/ko.po +++ b/po/ko.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-15 08:50+0200\n" -"Last-Translator: Tae-rok Hwang \n" +"PO-Revision-Date: 2013-06-18 13:51+0200\n" +"Last-Translator: Yungu Kim \n" "Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" @@ -3270,17 +3270,17 @@ msgstr "" #: libraries/Theme_Manager.class.php:137 #, php-format msgid "Default theme %s not found!" -msgstr "기본테마 %s 를 찾을 수 없습니다." +msgstr "기본테마 %s를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:194 #, php-format msgid "Theme %s not found!" -msgstr "%s 테마를 찾을 수 없습니다." +msgstr "%s 테마를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:271 #, php-format msgid "Theme path not found for theme %s!" -msgstr "%s 테마를 위한 테마 경로를 찾을 수 없습니다." +msgstr "%s 테마의 경로를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:363 msgid "Theme:" From 09e2cc1f0121140dfe410e63dbe037c4ce2d35f4 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 18 Jun 2013 08:25:14 -0400 Subject: [PATCH 06/52] Directly use the POST parameter --- pmd_save_pos.php | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pmd_save_pos.php b/pmd_save_pos.php index 420720697e..cd95ddb1b8 100644 --- a/pmd_save_pos.php +++ b/pmd_save_pos.php @@ -22,11 +22,6 @@ if (! $cfgRelation['designerwork']) { */ $post_params = array( 'die_save_pos', - 'server', - 't_h', - 't_v', - 't_x', - 't_y' ); foreach ($post_params as $one_post_param) { @@ -35,7 +30,7 @@ foreach ($post_params as $one_post_param) { } } -foreach ($t_x as $key => $value) { +foreach ($_POST['t_x'] as $key => $value) { // table name decode (post PDF exp/imp) $KEY = empty($_POST['IS_AJAX']) ? urldecode($key) : $key; list($DB,$TAB) = explode(".", $KEY); @@ -54,10 +49,10 @@ foreach ($t_x as $key => $value) { . ' VALUES (' . '\'' . PMA_Util::sqlAddSlashes($DB) . '\', ' . '\'' . PMA_Util::sqlAddSlashes($TAB) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_x[$key]) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_y[$key]) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_v[$key]) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_h[$key]) . '\')', + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_x'][$key]) . '\', ' + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_y'][$key]) . '\', ' + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_v'][$key]) . '\', ' + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_h'][$key]) . '\')', true, PMA_DatabaseInterface::QUERY_STORE ); } From 4bc178bbd2bff1d66d737e92a8bbc7779077c4df Mon Sep 17 00:00:00 2001 From: Spun Nakandala Date: Tue, 18 Jun 2013 23:07:47 +0530 Subject: [PATCH 07/52] USE database reloads the respective database --- sql.php | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/sql.php b/sql.php index 2bb7ba19a9..6a0fa3f3fa 100644 --- a/sql.php +++ b/sql.php @@ -349,7 +349,14 @@ if ($is_append_limit_clause) { } } -if (strlen($db)) { +if (strlen($db)) { + // Checks if the current database has changed + // This could happen if the user sends a query like "USE `database`;" + $current_db = $GLOBALS['dbi']->fetchValue('SELECT DATABASE()'); + if ($db !== $current_db) { + $reload = 1; + } + unset($current_db); $GLOBALS['dbi']->selectDb($db); } @@ -470,15 +477,6 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) { $profiling_results = $GLOBALS['dbi']->fetchResult('SHOW PROFILE;'); } - // Checks if the current database has changed - // This could happen if the user sends a query like "USE `database`;" - /*$current_db = $GLOBALS['dbi']->fetchValue('SELECT DATABASE()'); - if ($db !== $current_db) { - $db = $current_db; - $reload = 1; - } - unset($current_db);*/ - // tmpfile remove after convert encoding appended by Y.Kawada if (function_exists('PMA_Kanji_fileConv') && (isset($textfile) && file_exists($textfile)) From e3298a12d3ef12f2c30fddf9194b9e0ab757987b Mon Sep 17 00:00:00 2001 From: Spun Nakandala Date: Wed, 19 Jun 2013 10:58:13 +0530 Subject: [PATCH 08/52] Error relating to the uninitialized variable $cfg corrected --- libraries/sql.lib.php | 5 +++-- sql.php | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index f5bdc23400..dc69622922 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -655,8 +655,9 @@ function PMA_getHtmlForOptionsList($values, $selected_values) * @param string $db the current database * @param string $goto goto page url * @param string $bkm_sql_query the query to be bookmarked + * @param string $bkm_user the user creating the bookmark */ -function PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query) +function PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query, $bkm_user) { $html = '
'; $html .= ''; + . ' value="' . $bkm_user . '" />'; $html .= ''; diff --git a/sql.php b/sql.php index 6a0fa3f3fa..eae1bea97e 100644 --- a/sql.php +++ b/sql.php @@ -1002,7 +1002,8 @@ if ((0 == $num_rows && 0 == $unlim_num_rows) || $is_affected) { $bkm_sql_query = urlencode( isset($complete_query) ? $complete_query : $sql_query ); - $html_output .= PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query); + $bkm_user = $cfg['Bookmark']['user']; + $html_output .= PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query, $bkm_user); } // end bookmark support // Do print the page if required From 575513dc507ecd0bb2cd9cc4588adcb208f39a9e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 19 Jun 2013 12:46:19 +0530 Subject: [PATCH 09/52] Fix indentation --- libraries/Util.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Util.class.php b/libraries/Util.class.php index 7f03c3d804..72d23f373d 100644 --- a/libraries/Util.class.php +++ b/libraries/Util.class.php @@ -747,8 +747,8 @@ class PMA_Util * - use PMA_Response() to transmit the message and exit */ if (isset($GLOBALS['is_ajax_request']) - && $GLOBALS['is_ajax_request'] == true - ) { + && $GLOBALS['is_ajax_request'] == true + ) { $response = PMA_Response::getInstance(); $response->isSuccess(false); $response->addJSON('message', $error_msg); From 4fd0c1962dd725e04d53d03590a4ed458847eefa Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Tue, 18 Jun 2013 23:06:53 +0200 Subject: [PATCH 10/52] Translated using Weblate (Traditional Chinese) Currently translated at 85.4% (2284 of 2673) --- po/zh_TW.po | 609 +++++++++++++++++++--------------------------------- 1 file changed, 225 insertions(+), 384 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 2ae2df9e80..f4f65a859c 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-05-29 11:15+0200\n" -"Last-Translator: Chung-Lun Chiang \n" -"Language-Team: Traditional Chinese \n" +"PO-Revision-Date: 2013-06-18 23:06+0200\n" +"Last-Translator: Tony Chen \n" +"Language-Team: Traditional Chinese " +"\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1426,7 +1426,7 @@ msgstr "使用匯入的設定檔讀取圖表時發生錯誤,改用預設的設 #: prefs_manage.php:238 server_status_monitor.php:742 #: setup/frames/menu.inc.php:21 msgid "Import" -msgstr "輸入" +msgstr "匯入" #: js/messages.php:191 msgid "Import monitor configuration" @@ -5372,7 +5372,6 @@ msgid "Authentication type" msgstr "認證方式" #: libraries/config/messages.inc.php:376 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" #| "a] support, suggested: [kbd]pma_bookmark[/kbd]" @@ -5380,8 +5379,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤 [/a]功能請留空,預設:" -"[kbd]pma_bookmark[/kbd]" +"在不支援[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤[/a]功能時請留空,建議用:[kbd]pma__bo" +"okmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5395,7 +5394,7 @@ msgstr "書籤表" msgid "" "Leave blank for no column comments/mime types, suggested: " "[kbd]pma__column_info[/kbd]" -msgstr "留空則不使用列資訊和MIME類型。預設值:[kbd]pma_column_info[/kbd]" +msgstr "不使用欄位註解/MIME類型時留空白。建議值:[kbd]pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5461,14 +5460,13 @@ msgid "Control port" msgstr "管理伺服器" #: libraries/config/messages.inc.php:391 -#, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" #| "kbd]" msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" -msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]" +msgstr "不使用設計功能請留空,建議值:[kbd]pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5503,14 +5501,13 @@ msgid "Hide databases" msgstr "隱藏資料庫" #: libraries/config/messages.inc.php:399 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: " #| "[kbd]pma_history[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" -msgstr "不使用 SQL 查詢歷史功能請留空,預設:[kbd]pma_history[/kbd]" +msgstr "不使用 SQL 查詢歷史功能請留空,建議值:[kbd]pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5559,10 +5556,8 @@ msgid "" "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " "[kbd]'my_db'[/kbd]." msgstr "" -"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元的原始意義,請在前面" -"加上反斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。透過該選項" -"您可以對資料庫列表排序,只要依序輸入它們的名稱並在最後加上 [kbd]*[/kbd] 顯示" -"剩下的資料庫(依字母排序)。" +"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元本身,請在前面加上反斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 " +"[kbd]'my_db'[/kbd]。" #: libraries/config/messages.inc.php:409 msgid "Show only listed databases" @@ -5577,12 +5572,11 @@ msgid "Password for config auth" msgstr "config 認證方式的密碼" #: libraries/config/messages.inc.php:412 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" -msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_pdf_pages[/kbd]" +msgstr "不使用 PDF 大綱功能請留空,建議值:[kbd]pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5621,7 +5615,6 @@ msgid "Recently used table" msgstr "最近使用的資料表" #: libraries/config/messages.inc.php:420 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5629,8 +5622,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,預" -"設:[kbd]pma_relation[/kbd]" +"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 " +"[/a]功能請留空,建議值:[kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5676,28 +5669,26 @@ msgid "Use SSL" msgstr "使用 SSL" #: libraries/config/messages.inc.php:431 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" #| "kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" -msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_table_coords[/kbd]" +msgstr "不使用 PDF 大綱功能請留空,建議值:[kbd]pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" msgstr "PDF 大綱: 資料表同時" #: libraries/config/messages.inc.php:433 -#, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " #| "suggested: [kbd]pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" -msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]" +msgstr "描述顯示欄位的表,不使用請留空,建議值:[kbd]pma__table_info[/kbd]" #: libraries/config/messages.inc.php:434 msgid "Display columns table" @@ -5711,7 +5702,7 @@ msgstr "顯示字段表" msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" -msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]" +msgstr "不在資料表中儲存跨連線UI偏好時請留空,建議值:[kbd]pma__config[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -5757,14 +5748,13 @@ msgid "Statements to track" msgstr "要追蹤的命令" #: libraries/config/messages.inc.php:445 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: " #| "[kbd]pma_tracking[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: " "[kbd]pma__tracking[/kbd]" -msgstr "不使用 SQL 查詢追蹤功能請留空,預設:[kbd]pma_tracking[/kbd]" +msgstr "不使用 SQL 查詢追蹤功能請留空,建議值:[kbd]pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5781,14 +5771,13 @@ msgid "Automatically create versions" msgstr "自動建立版本" #: libraries/config/messages.inc.php:449 -#, fuzzy #| msgid "" #| "ve blank for no user preferences storage in database, suggested: " #| "[kbd]_config[/kbd]" msgid "" "Leave blank for no user preferences storage in database, suggested: " "[kbd]pma__userconfig[/kbd]" -msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]" +msgstr "不在資料庫中儲存使用者偏好請留空,建議值:[kbd]pma__config[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -5838,10 +5827,9 @@ msgid "Show or hide a column displaying the Creation timestamp for all tables" msgstr "" #: libraries/config/messages.inc.php:461 -#, fuzzy #| msgid "Show more actions" msgid "Show Creation timestamp" -msgstr "顯示更多操作" +msgstr "顯示建立時間戳記" #: libraries/config/messages.inc.php:462 msgid "" @@ -5858,10 +5846,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:465 -#, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" -msgstr "查看主伺服器狀態" +msgstr "顯示最後檢查時間戳記" #: libraries/config/messages.inc.php:466 msgid "" @@ -6103,10 +6090,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:523 -#, fuzzy #| msgid "Version check" msgid "Version check proxy url" -msgstr "檢查更新" +msgstr "檢查代理 url 版本" #: libraries/config/messages.inc.php:524 msgid "" @@ -6116,20 +6102,18 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:525 -#, fuzzy #| msgid "Version check" msgid "Version check proxy username" -msgstr "檢查更新" +msgstr "檢查代理使用者名稱版本" #: libraries/config/messages.inc.php:526 msgid "The password for authenticating with the proxy" msgstr "" #: libraries/config/messages.inc.php:527 -#, fuzzy #| msgid "Version check" msgid "Version check proxy password" -msgstr "檢查更新" +msgstr "檢查代理密碼版本" #: libraries/config/messages.inc.php:529 msgid "" @@ -6253,10 +6237,9 @@ msgid "Empty phpMyAdmin control user password while using pmadb" msgstr "使用 PMA 資料時控制使用者的密碼不能爲空" #: libraries/config/validate.lib.php:435 -#, fuzzy #| msgid "Incorrect value" msgid "Incorrect value:" -msgstr "輸入的值不正確" +msgstr "輸入的值不正確:" #: libraries/config/validate.lib.php:443 #, php-format @@ -6301,16 +6284,14 @@ msgstr "密碼:" #: libraries/display_change_password.lib.php:67 #: libraries/replication_gui.lib.php:379 #: libraries/server_privileges.lib.php:1226 -#, fuzzy #| msgid "Re-type" msgid "Re-type:" -msgstr "重新輸入" +msgstr "重新輸入:" #: libraries/display_change_password.lib.php:74 -#, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" -msgstr "密碼加密方式" +msgstr "密碼加密方式:" #: libraries/display_change_password.lib.php:87 msgid "MySQL 4.0 compatible" @@ -6325,10 +6306,9 @@ msgid "Create" msgstr "建立" #: libraries/display_create_database.lib.php:43 -#, fuzzy #| msgid "Create database" msgid "Create database:" -msgstr "建立新資料庫" +msgstr "建立新資料庫:" #: libraries/display_create_database.lib.php:47 #: libraries/server_privileges.lib.php:2943 server_privileges.php:149 @@ -6514,13 +6494,13 @@ msgstr "" #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "%2$s 提交了 %1$s" #: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "%2$s 執筆於 %1$s" #: libraries/display_import.lib.php:69 msgid "" @@ -6537,10 +6517,9 @@ msgid "%s of %s" msgstr "" #: libraries/display_import.lib.php:86 -#, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file…" -msgstr "匯入檔案的格式" +msgstr "正在上傳您的匯入檔案…" #: libraries/display_import.lib.php:94 #, php-format @@ -6609,7 +6588,6 @@ msgid "" msgstr "上一個匯入操作超時,隨後重新送出將會從 %d 處開始。" #: libraries/display_import.lib.php:289 -#, fuzzy #| msgid "" #| "Allow the interruption of an import in case the script detects it is " #| "close to the PHP timeout limit. (This might be good way to import " @@ -6618,9 +6596,7 @@ msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" -msgstr "" -"在匯入時指令若檢測到可能需要花費很長時間則允許中斷。(儘管這會中斷交易,但" -"在匯入大檔案時是個很好的方法。)" +msgstr "在 PHP 執行匯入時,若偵測到逾時則允許中斷。(在匯入大檔案時這是個很好的方法,不過這樣會中斷交易。)" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -6636,10 +6612,9 @@ msgid "Add index" msgstr "新增索引" #: libraries/display_indexes.lib.php:52 -#, fuzzy #| msgid "Edit mode" msgid "Edit index" -msgstr "編輯模式" +msgstr "編輯索引" #: libraries/display_indexes.lib.php:63 msgid "Index name:" @@ -6651,10 +6626,9 @@ msgid "" msgstr "(“PRIMARY”必須而且只能作爲主鍵的名稱!)" #: libraries/display_indexes.lib.php:85 -#, fuzzy #| msgid "Comment" msgid "Comment:" -msgstr "註解" +msgstr "註解:" #: libraries/display_indexes.lib.php:99 msgid "Index type:" @@ -7007,7 +6981,6 @@ msgid "" msgstr "點選相應的“選項”連結修改它的設定" #: libraries/import.lib.php:1193 -#, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "點選「結構」連結以編輯" @@ -7061,10 +7034,9 @@ msgid "Binary - do not edit" msgstr "二進制 - 無法編輯" #: libraries/insert_edit.lib.php:1187 libraries/sql_query_form.lib.php:482 -#, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" -msgstr "網站伺服器上傳資料夾" +msgstr "網站伺服器上傳資料夾:" #: libraries/insert_edit.lib.php:1402 #, php-format @@ -7129,16 +7101,14 @@ msgid "Convert to Kana" msgstr "轉換爲假名" #: libraries/mult_submits.inc.php:288 -#, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" -msgstr "覆蓋資料表名稱的前綴文字" +msgstr "取代資料表名稱的前綴文字:" #: libraries/mult_submits.inc.php:290 -#, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" -msgstr "複製資料表名稱的前綴文字" +msgstr "複製資料表並在名稱加上前綴文字:" #: libraries/mult_submits.inc.php:295 msgid "From" @@ -7154,20 +7124,18 @@ msgid "Submit" msgstr "送出" #: libraries/mult_submits.inc.php:317 -#, fuzzy #| msgid "Add table prefix" msgid "Add table prefix:" -msgstr "新增資料表的前綴文字" +msgstr "新增資料表的前綴文字:" #: libraries/mult_submits.inc.php:320 msgid "Add prefix" msgstr "新增前綴文字" #: libraries/mult_submits.inc.php:339 sql.php:416 -#, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" -msgstr "您真的要" +msgstr "您真的要執行下列的查詢?" #: libraries/mult_submits.inc.php:616 tbl_replace.php:251 msgid "No change" @@ -7387,10 +7355,9 @@ msgid_plural "%s other results found" msgstr[0] "" #: libraries/navigation/NavigationTree.class.php:1042 -#, fuzzy #| msgid "filter tables by name" msgid "filter databases by name" -msgstr "請輸入部分或完整的表名" +msgstr "依資料庫名稱篩選" #: libraries/navigation/NavigationTree.class.php:1043 #: libraries/navigation/NavigationTree.class.php:1076 @@ -7398,10 +7365,9 @@ msgid "Clear Fast Filter" msgstr "" #: libraries/navigation/NavigationTree.class.php:1075 -#, fuzzy #| msgid "filter tables by name" msgid "filter items by name" -msgstr "請輸入部分或完整的表名" +msgstr "依項目名稱篩選" #. l10n: The word "Node" must not be translated here #: libraries/navigation/NodeFactory.class.php:41 @@ -7478,10 +7444,9 @@ msgid "New" msgstr "" #: libraries/operations.lib.php:75 -#, fuzzy #| msgid "Rename database to" msgid "Rename database to:" -msgstr "將資料庫改名為" +msgstr "將資料庫改名為:" #: libraries/operations.lib.php:107 #, php-format @@ -7512,10 +7477,9 @@ msgid "Data only" msgstr "僅資料" #: libraries/operations.lib.php:175 -#, fuzzy #| msgid "Copy database to" msgid "Copy database to:" -msgstr "複製資料庫到" +msgstr "複製資料庫到:" #: libraries/operations.lib.php:186 msgid "CREATE DATABASE before copying" @@ -7713,10 +7677,9 @@ msgid "Username:" msgstr "使用者名稱:" #: libraries/plugins/auth/AuthenticationCookie.class.php:225 -#, fuzzy #| msgid "Server Choice" msgid "Server Choice:" -msgstr "選擇伺服器" +msgstr "選擇伺服器:" #: libraries/plugins/auth/AuthenticationCookie.class.php:386 msgid "Entered captcha is wrong, try again!" @@ -7837,10 +7800,9 @@ msgstr "Event" #: libraries/rte/rte_events.lib.php:513 #: libraries/rte/rte_routines.lib.php:1031 #: libraries/rte/rte_triggers.lib.php:401 -#, fuzzy #| msgid "Description" msgid "Definition" -msgstr "說明" +msgstr "定義" #: libraries/plugins/export/ExportHtmlword.class.php:553 #: libraries/plugins/export/ExportOdt.class.php:643 @@ -7883,24 +7845,22 @@ msgstr "物件建立選項" #: libraries/plugins/export/ExportLatex.class.php:121 #: libraries/plugins/export/ExportLatex.class.php:166 -#, fuzzy #| msgid "Table caption" msgid "Table caption:" -msgstr "表的標題" +msgstr "表的標題:" #: libraries/plugins/export/ExportLatex.class.php:126 #: libraries/plugins/export/ExportLatex.class.php:171 -#, fuzzy #| msgid "Table caption (continued)" msgid "Table caption (continued):" -msgstr "表的副標題" +msgstr "表的標題(續上):" #: libraries/plugins/export/ExportLatex.class.php:131 #: libraries/plugins/export/ExportLatex.class.php:176 #, fuzzy #| msgid "Label key" msgid "Label key:" -msgstr "關鍵標籤" +msgstr "標籤鍵值:" #: libraries/plugins/export/ExportLatex.class.php:137 #: libraries/plugins/export/ExportOdt.class.php:103 @@ -7920,71 +7880,63 @@ msgid "Display MIME types" msgstr "顯示 MIME 類型" #: libraries/plugins/export/ExportLatex.class.php:162 -#, fuzzy #| msgid "Put columns names in the first row" msgid "Put columns names in the first row:" -msgstr "首行儲存欄位名稱" +msgstr "首行儲存欄位名稱:" #: libraries/plugins/export/ExportLatex.class.php:218 #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 #: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 -#, fuzzy #| msgid "Host" msgid "Host:" -msgstr "主機" +msgstr "主機:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 #: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 -#, fuzzy #| msgid "Generation Time" msgid "Generation Time:" -msgstr "產生日期" +msgstr "產生時間:" #: libraries/plugins/export/ExportLatex.class.php:226 #: libraries/plugins/export/ExportSql.class.php:614 #: libraries/plugins/export/ExportXml.class.php:199 -#, fuzzy #| msgid "PHP Version" msgid "PHP Version:" -msgstr "PHP 版本" +msgstr "PHP 版本:" #: libraries/plugins/export/ExportLatex.class.php:251 #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 #: libraries/sql.lib.php:460 -#, fuzzy #| msgid "Database" msgid "Database:" -msgstr "資料庫" +msgstr "資料庫:" #: libraries/plugins/export/ExportLatex.class.php:303 #: libraries/plugins/export/ExportSql.class.php:1546 -#, fuzzy #| msgid "Data" msgid "Data:" -msgstr "資料" +msgstr "資料:" #: libraries/plugins/export/ExportLatex.class.php:487 -#, fuzzy #| msgid "Structure" msgid "Structure:" -msgstr "結構" +msgstr "結構:" #: libraries/plugins/export/ExportMediawiki.class.php:84 #, fuzzy #| msgid "Export contents" msgid "Export table names" -msgstr "匯出內容" +msgstr "要匯出資料表的名稱" #: libraries/plugins/export/ExportMediawiki.class.php:90 -#, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" -msgstr "水平 (旋轉標題)" +msgstr "匯出資料表的標題" #: libraries/plugins/export/ExportPdf.class.php:97 msgid "(Generates a report containing the data of a single table)" @@ -8035,10 +7987,9 @@ msgstr "" "表)" #: libraries/plugins/export/ExportSql.class.php:295 -#, fuzzy #| msgid "Object creation options" msgid "Data creation options" -msgstr "物件建立選項" +msgstr "資料建立選項" #: libraries/plugins/export/ExportSql.class.php:299 #: libraries/plugins/export/ExportSql.class.php:1652 @@ -8144,10 +8095,9 @@ msgid "Export contents" msgstr "匯出內容" #: libraries/plugins/export/PMA_ExportPdf.class.php:116 -#, fuzzy #| msgid "Table" msgid "Table:" -msgstr "表" +msgstr "資料表:" #: libraries/plugins/import/ImportCsv.class.php:63 #: libraries/plugins/import/ImportOds.class.php:74 @@ -8207,10 +8157,10 @@ msgid "MediaWiki Table" msgstr "MediaWiki 表" #: libraries/plugins/import/ImportMediawiki.class.php:303 -#, fuzzy, php-format +#, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." -msgstr "CSV 輸入的第 %d 行格式有錯" +msgstr "mediawiki 輸入在此行格式錯誤:
%s." #: libraries/plugins/import/ImportOds.class.php:88 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" @@ -8229,10 +8179,9 @@ msgid "" msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試。" #: libraries/plugins/import/ImportOds.class.php:182 -#, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" -msgstr "OpenOffice 表格" +msgstr "無法解析 OpenOffice 表格!" #: libraries/plugins/import/ImportShp.class.php:53 msgid "ESRI Shape File" @@ -8414,7 +8363,6 @@ msgid "not OK" msgstr "錯誤" #: libraries/relation.lib.php:92 -#, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" @@ -8522,10 +8470,9 @@ msgstr "" #: libraries/replication_gui.lib.php:60 libraries/replication_gui.lib.php:273 #: libraries/server_privileges.lib.php:1024 -#, fuzzy #| msgid "User name" msgid "User name:" -msgstr "帳號" +msgstr "帳號:" #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:276 #: libraries/replication_gui.lib.php:283 @@ -8535,10 +8482,9 @@ msgid "User name" msgstr "帳號" #: libraries/replication_gui.lib.php:72 -#, fuzzy #| msgid "Port" msgid "Port:" -msgstr "連接埠" +msgstr "連接埠:" #: libraries/replication_gui.lib.php:112 msgid "Master status" @@ -8585,10 +8531,9 @@ msgstr "任意使用者" #: libraries/replication_gui.lib.php:372 #: libraries/server_privileges.lib.php:1175 #: libraries/server_privileges.lib.php:2292 -#, fuzzy #| msgid "Use text field" msgid "Use text field:" -msgstr "使用文字域" +msgstr "使用文字欄位:" #: libraries/replication_gui.lib.php:326 #: libraries/server_privileges.lib.php:1139 @@ -8623,10 +8568,9 @@ msgid "Re-type" msgstr "重新輸入" #: libraries/replication_gui.lib.php:386 -#, fuzzy #| msgid "Generate Password" msgid "Generate Password:" -msgstr "產生密碼" +msgstr "產生密碼:" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 #: libraries/rte/rte_events.lib.php:157 libraries/rte/rte_routines.lib.php:296 @@ -8672,17 +8616,15 @@ msgstr "編輯 Event" #: libraries/rte/rte_routines.lib.php:1481 #: libraries/rte/rte_routines.lib.php:1521 #: libraries/rte/rte_triggers.lib.php:230 -#, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request:" -msgstr "要求處理得程序中有錯誤" +msgstr "處理要求時發生錯誤:" #: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:931 #: libraries/rte/rte_triggers.lib.php:347 -#, fuzzy #| msgid "Details…" msgid "Details" -msgstr "詳細…" +msgstr "詳細" #: libraries/rte/rte_events.lib.php:420 msgid "Event name" @@ -8693,10 +8635,10 @@ msgid "Event type" msgstr "Event 類型" #: libraries/rte/rte_events.lib.php:463 libraries/rte/rte_routines.lib.php:954 -#, fuzzy, php-format +#, php-format #| msgid "Change" msgid "Change to %s" -msgstr "修改" +msgstr "修改為 %s" #: libraries/rte/rte_events.lib.php:469 msgid "Execute at" @@ -8707,14 +8649,12 @@ msgid "Execute every" msgstr "" #: libraries/rte/rte_events.lib.php:496 -#, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" -msgstr "起始頁" +msgstr "起始" #: libraries/rte/rte_events.lib.php:505 -#, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" @@ -8771,10 +8711,9 @@ msgid "Event scheduler status" msgstr "Event 排程狀態" #: libraries/rte/rte_list.lib.php:55 -#, fuzzy #| msgid "Return type" msgid "Returns" -msgstr "返回類型" +msgstr "返回" #: libraries/rte/rte_routines.lib.php:69 msgid "" @@ -8786,38 +8725,36 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:281 #: libraries/rte/rte_routines.lib.php:1118 -#, fuzzy, php-format +#, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" -msgstr "無效的伺服器索引: %s" +msgstr "無效的函式類型: \"%s\"" #: libraries/rte/rte_routines.lib.php:321 msgid "Sorry, we failed to restore the dropped routine." msgstr "" #: libraries/rte/rte_routines.lib.php:332 -#, fuzzy, php-format +#, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." -msgstr "已刪除欄位 %s " +msgstr "函式的 %1$s 已被修改。" #: libraries/rte/rte_routines.lib.php:353 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." -msgstr "建立資料表 %1$s 成功" +msgstr "函式 %1$s 已建立成功。" #: libraries/rte/rte_routines.lib.php:434 -#, fuzzy #| msgid "Edit mode" msgid "Edit routine" -msgstr "編輯模式" +msgstr "編輯函式" #: libraries/rte/rte_routines.lib.php:934 -#, fuzzy #| msgid "Routines" msgid "Routine name" -msgstr "一般" +msgstr "函式名稱" #: libraries/rte/rte_routines.lib.php:960 msgid "Parameters" @@ -8827,7 +8764,7 @@ msgstr "" #, fuzzy #| msgid "Direct links" msgid "Direction" -msgstr "直接連線" +msgstr "方向" #: libraries/rte/rte_routines.lib.php:969 #: libraries/tbl_columns_definition_form.inc.php:98 @@ -8839,36 +8776,32 @@ msgid "Add parameter" msgstr "" #: libraries/rte/rte_routines.lib.php:988 -#, fuzzy #| msgid "Remove database" msgid "Remove last parameter" -msgstr "刪除資料庫" +msgstr "移除最後的參數" #: libraries/rte/rte_routines.lib.php:993 msgid "Return type" msgstr "返回類型" #: libraries/rte/rte_routines.lib.php:1000 -#, fuzzy #| msgid "Length/Values" msgid "Return length/values" -msgstr "長度/值" +msgstr "返回長度/值" #: libraries/rte/rte_routines.lib.php:1006 -#, fuzzy #| msgid "Table options" msgid "Return options" -msgstr "表選項" +msgstr "返回選項" #: libraries/rte/rte_routines.lib.php:1037 msgid "Is deterministic" msgstr "" #: libraries/rte/rte_routines.lib.php:1047 -#, fuzzy #| msgid "Security" msgid "Security type" -msgstr "安全" +msgstr "安全類型" #: libraries/rte/rte_routines.lib.php:1056 msgid "SQL data access" @@ -8903,10 +8836,10 @@ msgid "You must provide a routine definition." msgstr "" #: libraries/rte/rte_routines.lib.php:1370 -#, fuzzy, php-format +#, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" -msgstr "允許運行 Procedure" +msgstr "執行函式 %s 的結果" #: libraries/rte/rte_routines.lib.php:1435 #, php-format @@ -8921,41 +8854,37 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1572 #: libraries/rte/rte_routines.lib.php:1575 -#, fuzzy #| msgid "Routines" msgid "Routine parameters" -msgstr "一般" +msgstr "函式的參數" #: libraries/rte/rte_triggers.lib.php:106 msgid "Sorry, we failed to restore the dropped trigger." msgstr "" #: libraries/rte/rte_triggers.lib.php:116 -#, fuzzy, php-format +#, php-format #| msgid "Column %s has been dropped" msgid "Trigger %1$s has been modified." -msgstr "已刪除欄位 %s " +msgstr "觸發器 %1$s 已被修改。" #: libraries/rte/rte_triggers.lib.php:136 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." -msgstr "建立資料表 %1$s 成功" +msgstr "建立觸發器 %1$s 成功。" #: libraries/rte/rte_triggers.lib.php:204 -#, fuzzy #| msgid "Add a new server" msgid "Edit trigger" -msgstr "新增伺服器" +msgstr "編輯觸發器" #: libraries/rte/rte_triggers.lib.php:350 -#, fuzzy #| msgid "Triggers" msgid "Trigger name" -msgstr "觸發器" +msgstr "觸發器名稱" #: libraries/rte/rte_triggers.lib.php:373 -#, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" @@ -8974,86 +8903,77 @@ msgid "You must provide a valid event for the trigger" msgstr "您必須為 Event 指定一個正確觸發條件" #: libraries/rte/rte_triggers.lib.php:474 -#, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" -msgstr "無效的資料資料表名稱" +msgstr "您必須提供一個合法的資料表名稱" #: libraries/rte/rte_triggers.lib.php:480 msgid "You must provide a trigger definition." msgstr "" #: libraries/rte/rte_words.lib.php:27 -#, fuzzy #| msgid "Add index" msgid "Add routine" -msgstr "新增索引" +msgstr "新增函式" #: libraries/rte/rte_words.lib.php:29 -#, fuzzy, php-format +#, php-format #| msgid "Export defaults" msgid "Export of routine %s" -msgstr "匯出選項" +msgstr "匯出函式 %s" #: libraries/rte/rte_words.lib.php:30 -#, fuzzy #| msgid "Routines" msgid "routine" -msgstr "一般" +msgstr "函式" #: libraries/rte/rte_words.lib.php:31 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a routine" -msgstr "權限不足!" +msgstr "您無建立函式的權限" #: libraries/rte/rte_words.lib.php:32 -#, fuzzy, php-format +#, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" -msgstr "沒有在資料庫中找到表" +msgstr "在資料庫 %2$s 中無此函式名稱 %1$s" #: libraries/rte/rte_words.lib.php:33 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no routines to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有函式可供顯示。" #: libraries/rte/rte_words.lib.php:39 -#, fuzzy #| msgid "Add a new server" msgid "Add trigger" -msgstr "新增伺服器" +msgstr "新增觸發器" #: libraries/rte/rte_words.lib.php:41 -#, fuzzy, php-format +#, php-format #| msgid "Export contents" msgid "Export of trigger %s" -msgstr "匯出內容" +msgstr "匯出觸發器 %s" #: libraries/rte/rte_words.lib.php:42 -#, fuzzy #| msgid "Triggers" msgid "trigger" msgstr "觸發器" #: libraries/rte/rte_words.lib.php:43 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a trigger" -msgstr "權限不足!" +msgstr "您無建立觸發器的權限" #: libraries/rte/rte_words.lib.php:44 -#, fuzzy, php-format +#, php-format #| msgid "No tables found in database" msgid "No trigger with name %1$s found in database %2$s" -msgstr "沒有在資料庫中找到表" +msgstr "資料庫 %2$s 中無此觸發器 %1$s" #: libraries/rte/rte_words.lib.php:45 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no triggers to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有觸發器可供顯示。" #: libraries/rte/rte_words.lib.php:51 msgid "Add event" @@ -9078,10 +8998,9 @@ msgid "No event with name %1$s found in database %2$s" msgstr "在資料庫「%2$s」中找不到名為「%1$s」的 Event" #: libraries/rte/rte_words.lib.php:57 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no events to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有事件可供顯示。" #: libraries/schema/Dia_Relation_Schema.class.php:240 #: libraries/schema/Eps_Relation_Schema.class.php:429 @@ -9237,10 +9156,9 @@ msgid "Unknown language: %1$s." msgstr "未知的語言:%1$s." #: libraries/select_server.lib.php:39 libraries/select_server.lib.php:44 -#, fuzzy #| msgid "Current Server" msgid "Current Server:" -msgstr "目前伺服器" +msgstr "目前伺服器:" #: libraries/server_bin_log.lib.php:31 msgid "Select binary log to view" @@ -9308,7 +9226,6 @@ msgid "License" msgstr "" #: libraries/server_plugins.lib.php:184 -#, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "已關閉" @@ -9610,10 +9527,9 @@ msgid "Grant" msgstr "授權" #: libraries/server_privileges.lib.php:1610 -#, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." -msgstr "已刪除 view %s" +msgstr "已新增使用者。" #: libraries/server_privileges.lib.php:1618 msgctxt "Create new user" @@ -9682,20 +9598,18 @@ msgid "Column-specific privileges" msgstr "按欄位指定權限" #: libraries/server_privileges.lib.php:2288 -#, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database:" -msgstr "在下列資料庫新增權限" +msgstr "在下列資料庫新增權限:" #: libraries/server_privileges.lib.php:2309 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" #: libraries/server_privileges.lib.php:2327 -#, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" -msgstr "在下列資料表新增權限" +msgstr "在下列資料表新增權限:" #: libraries/server_privileges.lib.php:2544 msgid "Remove selected users" @@ -9729,19 +9643,17 @@ msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限。" #: libraries/server_privileges.lib.php:2805 -#, fuzzy, php-format +#, php-format #| msgid "Privileges" msgid "Privileges for %s" -msgstr "權限" +msgstr "權限 %s" #: libraries/server_privileges.lib.php:2861 -#, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" -msgstr "編輯權限" +msgstr "編輯權限:" #: libraries/server_privileges.lib.php:2915 -#, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "查看使用者" @@ -9771,56 +9683,49 @@ msgid "SQL result" msgstr "SQL 查詢結果" #: libraries/sql.lib.php:464 -#, fuzzy #| msgid "Generated by" msgid "Generated by:" -msgstr "產生者" +msgstr "產生者:" #: libraries/sql.lib.php:495 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" -msgstr "資料檔案增長大小" +msgstr "簡介明細" #: libraries/sql.lib.php:498 -#, fuzzy #| msgid "Other" msgid "Order" -msgstr "其他" +msgstr "順序" #: libraries/sql.lib.php:500 libraries/sql.lib.php:546 -#, fuzzy #| msgid "Startup" msgid "State" -msgstr "起始頁" +msgstr "狀態" #: libraries/sql.lib.php:543 msgid "Summary by state" msgstr "" #: libraries/sql.lib.php:551 -#, fuzzy #| msgid "Total time:" msgid "Total Time" -msgstr "總計耗時:" +msgstr "總計耗時" #: libraries/sql.lib.php:553 -#, fuzzy #| msgid "Time" msgid "% Time" -msgstr "時間" +msgstr "% 時間" #: libraries/sql.lib.php:555 -#, fuzzy #| msgid "Close" msgid "Calls" -msgstr "關閉" +msgstr "次呼叫" #: libraries/sql.lib.php:557 -#, fuzzy #| msgid "Time" msgid "ø Time" -msgstr "時間" +msgstr "ø 時間" #: libraries/sql_query_form.lib.php:188 #, php-format @@ -9837,10 +9742,9 @@ msgid "Clear" msgstr "清除" #: libraries/sql_query_form.lib.php:318 -#, fuzzy #| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" -msgstr "將此 SQL 查詢加爲書籤" +msgstr "將此 SQL 查詢加爲書籤:" #: libraries/sql_query_form.lib.php:326 sql.php:1199 msgid "Let every user access this bookmark" @@ -10015,20 +9919,18 @@ msgid "Fulltext" msgstr "全文搜尋" #: libraries/structure.lib.php:1423 libraries/structure.lib.php:1519 -#, fuzzy #| msgid "Remove column(s)" msgid "Move columns" -msgstr "刪除欄位" +msgstr "移動欄位" #: libraries/structure.lib.php:1426 msgid "Move the columns by dragging them up and down." msgstr "" #: libraries/structure.lib.php:1460 -#, fuzzy #| msgid "Print view" msgid "Edit view" -msgstr "列印預覽" +msgstr "編輯視表" #: libraries/structure.lib.php:1493 msgid "Relation view" @@ -10067,7 +9969,6 @@ msgid "After %s" msgstr "於 %s 之後" #: libraries/structure.lib.php:1670 -#, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "行統計" @@ -10108,10 +10009,9 @@ msgid "A primary key has been added on %s" msgstr "已將 %s 設爲主鍵" #: libraries/structure.lib.php:2003 libraries/structure.lib.php:2074 -#, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" -msgstr "瀏覽非重複值 (DISTINCT)" +msgstr "不同的值" #: libraries/structure.lib.php:2006 libraries/structure.lib.php:2009 msgid "Add primary key" @@ -10122,10 +10022,9 @@ msgid "Add unique index" msgstr "新增唯一鍵" #: libraries/structure.lib.php:2024 libraries/structure.lib.php:2027 -#, fuzzy #| msgid "Add index" msgid "Add SPATIAL index" -msgstr "新增索引" +msgstr "新增 SPATIAL 索引" #: libraries/structure.lib.php:2030 libraries/structure.lib.php:2033 msgid "Add FULLTEXT index" @@ -10145,16 +10044,14 @@ msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" #: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 -#, fuzzy #| msgid "Query type" msgid "Query error" -msgstr "查詢方式" +msgstr "查詢錯誤" #: libraries/structure.lib.php:2509 -#, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." -msgstr "已成功刪除選中的使用者" +msgstr "欄位已搬移成功。" #: libraries/structure.lib.php:2557 #, php-format @@ -10178,10 +10075,9 @@ msgid "" msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a" #: libraries/tbl_columns_definition_form.inc.php:149 -#, fuzzy #| msgid "Remove column(s)" msgid "Move column" -msgstr "刪除欄位" +msgstr "搬移欄位" #: libraries/tbl_columns_definition_form.inc.php:159 #, php-format @@ -10226,7 +10122,7 @@ msgid "first" msgstr "" #: libraries/tbl_columns_definition_form.inc.php:644 -#, fuzzy, php-format +#, php-format #| msgid "After %s" msgid "after %s" msgstr "於 %s 之後" @@ -10236,28 +10132,25 @@ msgid "Table name" msgstr "資料資料表名稱" #: libraries/tbl_columns_definition_form.inc.php:838 -#, fuzzy #| msgid "Storage Engine" msgid "Storage Engine:" -msgstr "儲存引擎" +msgstr "儲存引擎:" #: libraries/tbl_columns_definition_form.inc.php:842 -#, fuzzy #| msgid "Collation" msgid "Collation:" -msgstr "排序規則" +msgstr "排序規則:" #: libraries/tbl_columns_definition_form.inc.php:876 -#, fuzzy #| msgid "PARTITION definition" msgid "PARTITION definition:" -msgstr "分區定義" +msgstr "分區定義:" #: libraries/tbl_common.inc.php:54 -#, fuzzy, php-format +#, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." -msgstr "%s.%s 的追蹤已啓用" +msgstr "%s 的追蹤已啓用。" #: libraries/user_preferences.inc.php:29 msgid "Manage your settings" @@ -10350,10 +10243,9 @@ msgid "Toggle small/big" msgstr "反向收縮/展開" #: pmd_general.php:141 -#, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" -msgstr "要選擇關聯,點選:" +msgstr "請點選關聯行" #: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" @@ -10376,10 +10268,9 @@ msgid "Hide/Show Tables with no relation" msgstr "隱藏/顯示沒有關聯的表" #: pmd_general.php:218 -#, fuzzy #| msgid "Number of tables" msgid "Number of tables:" -msgstr "資料表數量" +msgstr "資料表數量:" #: pmd_general.php:467 msgid "Delete relation" @@ -10424,10 +10315,9 @@ msgid "Page creation failed" msgstr "頁面建立失敗" #: pmd_pdf.php:113 -#, fuzzy #| msgid "Page" msgid "Page:" -msgstr "頁面" +msgstr "頁面:" #: pmd_pdf.php:123 msgid "Import from selected page" @@ -10446,10 +10336,9 @@ msgid "New page name: " msgstr "新頁面名: " #: pmd_pdf.php:141 -#, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" -msgstr "按比例匯出/匯入" +msgstr "按比例匯出/匯入:" #: pmd_pdf.php:146 msgid "recommended" @@ -10468,10 +10357,9 @@ msgid "FOREIGN KEY relation added" msgstr "已新增外部鍵關聯" #: pmd_relation_new.php:82 -#, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" -msgstr "錯誤:關聯未新增" +msgstr "錯誤:關聯未啟用!" #: pmd_relation_new.php:98 msgid "Internal relation added" @@ -10562,10 +10450,9 @@ msgid "All" msgstr "全部" #: querywindow.php:154 -#, fuzzy #| msgid "SQL history" msgid "SQL history:" -msgstr "SQL 歷史" +msgstr "SQL 歷史:" #: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format @@ -10577,11 +10464,13 @@ msgid "File doesn't exist" msgstr "檔案不存在" #: server_databases.php:117 -#, fuzzy, php-format +#, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." -msgstr[0] "已成功刪除 %s 個資料庫" +msgstr[0] "" +"已成功刪除 %1$d 個資料庫。\n" +"已成功刪除 %1$d 個資料庫。" #: server_databases.php:138 msgid "Databases statistics" @@ -10811,10 +10700,10 @@ msgid "Network traffic since startup: %s" msgstr "" #: server_status.php:106 -#, fuzzy, php-format +#, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" +msgstr "此 MySQL 伺服器已經運行了 %1$s,啓動時間爲 %2$s。" #: server_status.php:116 msgid "" @@ -10871,9 +10760,8 @@ msgid "Command" msgstr "命令" #: server_status_advisor.php:44 -#, fuzzy msgid "Instructions" -msgstr "資料" +msgstr "指令" #: server_status_advisor.php:50 msgid "" @@ -10903,9 +10791,8 @@ msgid "" msgstr "" #: server_status_monitor.php:453 -#, fuzzy msgid "Monitor Instructions" -msgstr "資料" +msgstr "監督指令" #: server_status_monitor.php:455 msgid "" @@ -10956,38 +10843,34 @@ msgid "" msgstr "" #: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy #| msgid "Add index" msgid "Add chart" -msgstr "新增索引" +msgstr "新增圖表" #: server_status_monitor.php:519 -#, fuzzy #| msgid "Remove database" msgid "Preset chart" -msgstr "刪除資料庫" +msgstr "預設圖表" #: server_status_monitor.php:523 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" -msgstr "查看從伺服器狀態" +msgstr "狀態變數值" #: server_status_monitor.php:526 -#, fuzzy #| msgid "Select Tables" msgid "Select series:" -msgstr "選擇表" +msgstr "選擇序列:" #: server_status_monitor.php:528 msgid "Commonly monitored" msgstr "" #: server_status_monitor.php:544 -#, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" -msgstr "無效的資料資料表名稱" +msgstr "或變數型態名稱:" #: server_status_monitor.php:551 msgid "Display as differential value" @@ -11002,32 +10885,28 @@ msgid "Append unit to data values" msgstr "" #: server_status_monitor.php:568 -#, fuzzy #| msgid "Add a new server" msgid "Add this series" -msgstr "新增伺服器" +msgstr "新增這個序列" #: server_status_monitor.php:570 msgid "Clear series" msgstr "" #: server_status_monitor.php:573 -#, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" -msgstr "SQL 查詢" +msgstr "圖表中的序列:" #: server_status_monitor.php:584 -#, fuzzy #| msgid "Show statistics" msgid "Log statistics" -msgstr "顯示統計" +msgstr "紀錄統計" #: server_status_monitor.php:585 -#, fuzzy #| msgid "Select page" msgid "Selected time range:" -msgstr "選擇頁" +msgstr "選擇時間範圍:" #: server_status_monitor.php:591 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" @@ -11046,30 +10925,33 @@ msgid "Results are grouped by query text." msgstr "" #: server_status_monitor.php:606 -#, fuzzy #| msgid "Query type" msgid "Query analyzer" -msgstr "查詢方式" +msgstr "查詢分析" #: server_status_monitor.php:654 -#, fuzzy, php-format +#, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "秒" +msgstr[0] "" +"%d 秒\n" +"%d 秒" #: server_status_monitor.php:657 -#, fuzzy, php-format +#, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "分" +msgstr[0] "" +"%d 分\n" +"%d 分" #: server_status_monitor.php:674 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" -msgstr "文字框行" +msgstr "開始觀察(monitor)" #: server_status_monitor.php:681 msgid "Instructions/Setup" @@ -11080,27 +10962,24 @@ msgid "Done dragging (rearranging) charts" msgstr "" #: server_status_monitor.php:704 -#, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" -msgstr "啓用醒目提示" +msgstr "啓用圖表拖放" #: server_status_monitor.php:708 -#, fuzzy msgid "Refresh rate" -msgstr "重新整理" +msgstr "更新頻率" #: server_status_monitor.php:717 -#, fuzzy #| msgid "Textarea columns" msgid "Chart columns" -msgstr "文本框列" +msgstr "圖表欄位" #: server_status_monitor.php:733 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" -msgstr "錯誤管理:" +msgstr "圖表排列" #: server_status_monitor.php:736 msgid "" @@ -11109,34 +10988,30 @@ msgid "" msgstr "" #: server_status_monitor.php:750 -#, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "還原預設值" #: server_status_queries.php:67 -#, fuzzy, php-format +#, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" -msgstr "自訂起始頁" +msgstr "自啟動後的問題:%s" #: server_status_queries.php:79 -#, fuzzy #| msgid "per hour" msgid "per hour:" -msgstr "每小時" +msgstr "每小時:" #: server_status_queries.php:82 -#, fuzzy #| msgid "per minute" msgid "per minute:" -msgstr "每分鐘" +msgstr "每分鐘:" #: server_status_queries.php:86 -#, fuzzy #| msgid "per second" msgid "per second:" -msgstr "每秒" +msgstr "每秒:" #: server_status_queries.php:119 msgid "Statements" @@ -11153,32 +11028,28 @@ msgid "Filters" msgstr "過濾" #: server_status_variables.php:82 server_variables.php:158 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "保持原密碼" +msgstr "包含這個字:" #: server_status_variables.php:89 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "顯示開啟的表" +msgstr "只顯示警示值" #: server_status_variables.php:94 msgid "Filter by category…" msgstr "" #: server_status_variables.php:114 -#, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" -msgstr "顯示開啟的表" +msgstr "顯示未格式化的值" #: server_status_variables.php:133 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "相關連結" +msgstr "相關連結:" #: server_status_variables.php:330 msgid "" @@ -11187,10 +11058,9 @@ msgid "" msgstr "" #: server_status_variables.php:334 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." -msgstr "無法連線到 MySQL 伺服器" +msgstr "無法連線到 MySQL 伺服器。" #: server_status_variables.php:337 msgid "" @@ -11562,10 +11432,9 @@ msgid "" msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量。" #: server_status_variables.php:596 -#, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" -msgstr "匯入檔案的格式" +msgstr "已使用鍵值緩存的百分比(計算值)" #: server_status_variables.php:599 msgid "The number of requests to read a key block from the cache." @@ -11801,10 +11670,9 @@ msgstr "" "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" #: server_status_variables.php:758 -#, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" -msgstr "追蹤已停用" +msgstr "執行序緩存命中率(計算值)" #: server_status_variables.php:761 msgid "The number of threads that are not sleeping." @@ -11866,10 +11734,9 @@ msgid "Insecure connection" msgstr "非安全連線" #: setup/frames/index.inc.php:98 -#, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." -msgstr "修改已儲存" +msgstr "設定已儲存。" #: setup/frames/index.inc.php:99 msgid "" @@ -12108,10 +11975,9 @@ msgid "" msgstr "此系統目前不支援 %sZip 解壓縮%s所必須的 (%s) 函數。" #: setup/lib/index.lib.php:348 -#, fuzzy #| msgid "You should use SSL connections if your web server supports it." msgid "You should use SSL connections if your database server supports it." -msgstr "如果伺服器支援,您應該使用 SSL 連線" +msgstr "如果資料庫支援,您應該使用 SSL 連線。" #: setup/lib/index.lib.php:363 msgid "You should use mysqli for performance reasons." @@ -12130,10 +11996,9 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元。" #: setup/validate.php:22 -#, fuzzy #| msgid "No databases" msgid "Wrong data" -msgstr "沒有資料庫" +msgstr "錯誤的資料" #: sql.php:216 #, php-format @@ -12141,10 +12006,9 @@ msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢。" #: sql.php:298 -#, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" -msgstr "已建立書籤 %s" +msgstr "書籤並未建立" #: sql.php:842 msgid "Showing as PHP code" @@ -12155,14 +12019,14 @@ msgid "Validated SQL" msgstr "已校驗的 SQL" #: sql.php:1101 -#, fuzzy, php-format +#, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " #| "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." -msgstr "這個資料表不含唯一的資料欄位,跟修改、複製、刪除有關的功能可能會無效。" +msgstr "資料表 %s 不含唯一的資料欄位,將無法執行修改、複製、刪除等相關的功能。" #: sql.php:1154 #, php-format @@ -12174,16 +12038,14 @@ msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" #: sql.php:1191 -#, fuzzy #| msgid "Label" msgid "Label:" -msgstr "標籤" +msgstr "標籤:" #: tbl_chart.php:38 -#, fuzzy #| msgid "No databases" msgid "No data to display" -msgstr "沒有資料庫" +msgstr "無資料可顯示" #: tbl_chart.php:62 tbl_gis_visualization.php:24 msgid "No SQL query was set to fetch data." @@ -12194,21 +12056,18 @@ msgid "No numeric columns present in the table to plot." msgstr "" #: tbl_chart.php:154 -#, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" -msgstr "柱狀圖" +msgstr "長條圖" #: tbl_chart.php:156 -#, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "欄位" #: tbl_chart.php:159 -#, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" @@ -12219,7 +12078,7 @@ msgstr "折線圖" #| msgid "Inline" msgctxt "Chart type" msgid "Spline" -msgstr "行間" +msgstr "Spline" #: tbl_chart.php:163 msgctxt "Chart type" @@ -12227,56 +12086,49 @@ msgid "Area" msgstr "" #: tbl_chart.php:166 -#, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "餅圖" #: tbl_chart.php:170 -#, fuzzy #| msgid "Time" msgctxt "Chart type" msgid "Timeline" -msgstr "時間" +msgstr "時間軸" #: tbl_chart.php:177 msgid "Stacked" msgstr "堆疊" #: tbl_chart.php:180 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "報告標題:" +msgstr "圖表標題" #: tbl_chart.php:184 msgid "X-Axis:" msgstr "" #: tbl_chart.php:200 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "SQL 查詢" +msgstr "序列:" #: tbl_chart.php:229 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "水平軸標籤" +msgstr "水平軸標籤:" #: tbl_chart.php:232 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "值" +msgstr "水平軸值" #: tbl_chart.php:234 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "豎直軸標籤" +msgstr "垂直軸標籤:" #: tbl_create.php:34 #, php-format @@ -12305,35 +12157,32 @@ msgstr "無效的資料資料表名稱" #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" -msgstr "顯示伺服器選擇" +msgstr "顯示可視化地理訊息" #: tbl_gis_visualization.php:119 -#, fuzzy #| msgid "Textarea columns" msgid "Label column" -msgstr "文本框列" +msgstr "標籤欄位" #: tbl_gis_visualization.php:121 -#, fuzzy #| msgid "- none -" msgid "-- None --" -msgstr "- 無 -" +msgstr "-- 無 --" #: tbl_gis_visualization.php:135 #, fuzzy #| msgid "Total count" msgid "Spatial column" -msgstr "總數量" +msgstr "Spatial 欄位" #: tbl_gis_visualization.php:150 msgid "Redraw" msgstr "重繪" #: tbl_gis_visualization.php:178 -#, fuzzy #| msgid "Table name" msgid "File name" -msgstr "資料資料表名稱" +msgstr "檔案名稱" #: tbl_indexes.php:71 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -12370,22 +12219,19 @@ msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" #: tbl_printview.php:65 -#, fuzzy #| msgid "Show tables" msgid "Showing tables:" -msgstr "顯示資料表" +msgstr "顯示資料表:" #: tbl_printview.php:296 -#, fuzzy #| msgid "Space usage" msgid "Space usage:" -msgstr "已用空間" +msgstr "已用空間:" #: tbl_printview.php:345 -#, fuzzy #| msgid "Row Statistics" msgid "Row Statistics:" -msgstr "行統計" +msgstr "行統計:" #: tbl_relation.php:213 #, php-format @@ -12407,28 +12253,24 @@ msgid "Foreign key constraint" msgstr "外部鍵約束" #: tbl_relation.php:500 -#, fuzzy #| msgid "Constraints for table" msgid "Constraint name" -msgstr "資料表的 Constraints" +msgstr "約束名稱" #: tbl_relation.php:531 -#, fuzzy #| msgid "No index defined!" msgid "No index defined! Create one below" -msgstr "沒有已定義的索引!" +msgstr "未定義索引! 請建立一個" #: tbl_relation.php:546 -#, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" -msgstr "選擇要顯示的欄位" +msgstr "選擇要顯示的欄位:" #: tbl_structure.php:125 -#, fuzzy #| msgid "No rows selected" msgid "No column selected." -msgstr "沒有選中任何行" +msgstr "未選定欄位。" #: tbl_tracking.php:135 #, php-format @@ -12436,22 +12278,22 @@ msgid "Tracking report for table `%s`" msgstr "`%s` 的追蹤報告" #: tbl_tracking.php:205 -#, fuzzy, php-format +#, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." -msgstr "已建立版本 %s,%s.%s 的追蹤已啓用" +msgstr "已建立版本 %1$s,%2$s 的追蹤已啓用。" #: tbl_tracking.php:222 -#, fuzzy, php-format +#, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." -msgstr "%s.%s 的追蹤已啓用" +msgstr "在版本 %2$s 已停用 %1$s 的追蹤。" #: tbl_tracking.php:239 -#, fuzzy, php-format +#, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." -msgstr "%s.%s 的追蹤已啓用" +msgstr "在版本 %2$s 已啟用 %1$s 的追。" #: tbl_tracking.php:253 msgid "SQL statements executed." @@ -12477,10 +12319,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 程式碼)" #: tbl_tracking.php:454 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "追蹤這些資料定義的語句:" +msgstr "追蹤資料定義已刪除" #: tbl_tracking.php:478 #, fuzzy From 472a6239a433bc3b3abde27041e880f9f18dc8fc Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 19 Jun 2013 12:51:33 +0530 Subject: [PATCH 11/52] Rename PMA_filter_tracking -> PMA_filterTracking --- tbl_tracking.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tbl_tracking.php b/tbl_tracking.php index 3e71694f84..29d9f20e59 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -62,7 +62,7 @@ if (isset($_REQUEST['report_export'])) { * * @return array filtered entries */ - function PMA_filter_tracking( + function PMA_filterTracking( $data, $filter_ts_from, $filter_ts_to, $filter_users ) { $tmp_entries = array(); @@ -92,7 +92,7 @@ if (isset($_REQUEST['report_export'])) { ) { $entries = array_merge( $entries, - PMA_filter_tracking( + PMA_filterTracking( $data['ddlog'], $filter_ts_from, $filter_ts_to, $filter_users ) ); @@ -104,7 +104,7 @@ if (isset($_REQUEST['report_export'])) { ) { $entries = array_merge( $entries, - PMA_filter_tracking( + PMA_filterTracking( $data['dmlog'], $filter_ts_from, $filter_ts_to, $filter_users ) ); From 1edbc2cd3dd7cdd43c53cb8a1949f9ba58e13b97 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 19 Jun 2013 13:00:04 +0530 Subject: [PATCH 12/52] Fix indentation, remove extra space --- tbl_tracking.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tbl_tracking.php b/tbl_tracking.php index 29d9f20e59..f2581d25d7 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -67,18 +67,19 @@ if (isset($_REQUEST['report_export'])) { ) { $tmp_entries = array(); $id = 0; - foreach ( $data as $entry ) { + foreach ($data as $entry) { $timestamp = strtotime($entry['date']); if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to && (in_array('*', $filter_users) || in_array($entry['username'], $filter_users)) ) { - $tmp_entries[] = array( 'id' => $id, - 'timestamp' => $timestamp, - 'username' => $entry['username'], - 'statement' => $entry['statement'] - ); + $tmp_entries[] = array( + 'id' => $id, + 'timestamp' => $timestamp, + 'username' => $entry['username'], + 'statement' => $entry['statement'] + ); } $id++; } From 228a9b8421ffb3fe1b5f2a0943f0c57613664038 Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Tue, 18 Jun 2013 23:06:53 +0200 Subject: [PATCH 13/52] Translated using Weblate (Traditional Chinese) Currently translated at 85.4% (2224 of 2603) --- po/zh_TW.po | 427 ++++++++++++++++++++-------------------------------- 1 file changed, 163 insertions(+), 264 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 162a9afeb0..7d3a847314 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,14 +4,14 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-03 09:16-0400\n" -"PO-Revision-Date: 2013-05-29 11:15+0200\n" -"Last-Translator: Chung-Lun Chiang \n" -"Language-Team: Traditional Chinese \n" +"PO-Revision-Date: 2013-06-18 23:06+0200\n" +"Last-Translator: Tony Chen \n" +"Language-Team: Traditional Chinese " +"\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -1479,7 +1479,7 @@ msgstr "使用匯入的設定檔讀取圖表時發生錯誤,改用預設的設 #: prefs_manage.php:232 server_status_monitor.php:530 #: setup/frames/menu.inc.php:21 msgid "Import" -msgstr "輸入" +msgstr "匯入" #: js/messages.php:200 msgid "Import monitor configuration" @@ -5305,7 +5305,6 @@ msgid "Authentication type" msgstr "認證方式" #: libraries/config/messages.inc.php:376 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" #| "a] support, suggested: [kbd]pma_bookmark[/kbd]" @@ -5313,8 +5312,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤 [/a]功能請留空,預設:" -"[kbd]pma_bookmark[/kbd]" +"在不支援[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤[/a]功能時請留空,建議用:[kbd]pma__bo" +"okmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5328,7 +5327,7 @@ msgstr "書籤表" msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]" -msgstr "留空則不使用列資訊和MIME類型。預設值:[kbd]pma_column_info[/kbd]" +msgstr "不使用欄位註解/MIME類型時留空白。建議值:[kbd]pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5377,14 +5376,13 @@ msgid "Control host" msgstr "管理伺服器" #: libraries/config/messages.inc.php:389 -#, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" #| "kbd]" msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" -msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]" +msgstr "不使用設計功能請留空,建議值:[kbd]pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:390 msgid "Designer table" @@ -5419,14 +5417,13 @@ msgid "Hide databases" msgstr "隱藏資料庫" #: libraries/config/messages.inc.php:397 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" #| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" -msgstr "不使用 SQL 查詢歷史功能請留空,預設:[kbd]pma_history[/kbd]" +msgstr "不使用 SQL 查詢歷史功能請留空,建議值:[kbd]pma__history[/kbd]" #: libraries/config/messages.inc.php:398 msgid "SQL query history table" @@ -5475,10 +5472,8 @@ msgid "" "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " "[kbd]'my_db'[/kbd]." msgstr "" -"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元的原始意義,請在前面" -"加上反斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。透過該選項" -"您可以對資料庫列表排序,只要依序輸入它們的名稱並在最後加上 [kbd]*[/kbd] 顯示" -"剩下的資料庫(依字母排序)。" +"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元本身,請在前面加上反斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 " +"[kbd]'my_db'[/kbd]。" #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" @@ -5493,12 +5488,11 @@ msgid "Password for config auth" msgstr "config 認證方式的密碼" #: libraries/config/messages.inc.php:410 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" -msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_pdf_pages[/kbd]" +msgstr "不使用 PDF 大綱功能請留空,建議值:[kbd]pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:411 msgid "PDF schema: pages table" @@ -5537,7 +5531,6 @@ msgid "Recently used table" msgstr "最近使用的資料表" #: libraries/config/messages.inc.php:418 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5545,8 +5538,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,預" -"設:[kbd]pma_relation[/kbd]" +"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 " +"[/a]功能請留空,建議值:[kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Relation table" @@ -5592,28 +5585,26 @@ msgid "Use SSL" msgstr "使用 SSL" #: libraries/config/messages.inc.php:429 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" #| "kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" -msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_table_coords[/kbd]" +msgstr "不使用 PDF 大綱功能請留空,建議值:[kbd]pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:430 msgid "PDF schema: table coordinates" msgstr "PDF 大綱: 資料表同時" #: libraries/config/messages.inc.php:431 -#, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " #| "suggested: [kbd]pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" -msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]" +msgstr "描述顯示欄位的表,不使用請留空,建議值:[kbd]pma__table_info[/kbd]" #: libraries/config/messages.inc.php:432 msgid "Display columns table" @@ -5673,14 +5664,13 @@ msgid "Statements to track" msgstr "要追蹤的命令" #: libraries/config/messages.inc.php:443 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" #| "pma_tracking[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]" -msgstr "不使用 SQL 查詢追蹤功能請留空,預設:[kbd]pma_tracking[/kbd]" +msgstr "不使用 SQL 查詢追蹤功能請留空,建議值:[kbd]pma__tracking[/kbd]" #: libraries/config/messages.inc.php:444 msgid "SQL query tracking table" @@ -5697,14 +5687,13 @@ msgid "Automatically create versions" msgstr "自動建立版本" #: libraries/config/messages.inc.php:447 -#, fuzzy #| msgid "" #| "ve blank for no user preferences storage in database, suggested: [kbd]" #| "_config[/kbd]" msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]" -msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]" +msgstr "不在資料庫中儲存使用者偏好請留空,建議值:[kbd]pma__config[/kbd]" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" @@ -5754,10 +5743,9 @@ msgid "Show or hide a column displaying the Creation timestamp for all tables" msgstr "" #: libraries/config/messages.inc.php:459 -#, fuzzy #| msgid "Show more actions" msgid "Show Creation timestamp" -msgstr "顯示更多操作" +msgstr "顯示建立時間戳記" #: libraries/config/messages.inc.php:460 msgid "" @@ -5774,10 +5762,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:463 -#, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" -msgstr "查看主伺服器狀態" +msgstr "顯示最後檢查時間戳記" #: libraries/config/messages.inc.php:464 msgid "" @@ -6382,13 +6369,13 @@ msgstr "" #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "%2$s 提交了 %1$s" #: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "%2$s 執筆於 %1$s" #: libraries/display_import.lib.php:69 msgid "" @@ -6405,10 +6392,9 @@ msgid "%s of %s" msgstr "" #: libraries/display_import.lib.php:86 -#, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file…" -msgstr "匯入檔案的格式" +msgstr "正在上傳您的匯入檔案…" #: libraries/display_import.lib.php:94 #, php-format @@ -6477,7 +6463,6 @@ msgid "" msgstr "上一個匯入操作超時,隨後重新送出將會從 %d 處開始。" #: libraries/display_import.lib.php:289 -#, fuzzy #| msgid "" #| "Allow the interruption of an import in case the script detects it is " #| "close to the PHP timeout limit. (This might be good way to import " @@ -6486,9 +6471,7 @@ msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" -msgstr "" -"在匯入時指令若檢測到可能需要花費很長時間則允許中斷。(儘管這會中斷交易,但" -"在匯入大檔案時是個很好的方法。)" +msgstr "在 PHP 執行匯入時,若偵測到逾時則允許中斷。(在匯入大檔案時這是個很好的方法,不過這樣會中斷交易。)" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -6841,7 +6824,6 @@ msgid "" msgstr "點選相應的“選項”連結修改它的設定" #: libraries/import.lib.php:1193 -#, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "點選「結構」連結以編輯" @@ -6989,10 +6971,9 @@ msgid "Add prefix" msgstr "新增前綴文字" #: libraries/mult_submits.inc.php:318 sql.php:504 -#, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" -msgstr "您真的要" +msgstr "您真的要執行下列的查詢?" #: libraries/mult_submits.inc.php:576 tbl_replace.php:247 msgid "No change" @@ -7212,10 +7193,9 @@ msgid_plural "%s other results found" msgstr[0] "" #: libraries/navigation/NavigationTree.class.php:1035 -#, fuzzy #| msgid "filter tables by name" msgid "filter databases by name" -msgstr "請輸入部分或完整的表名" +msgstr "依資料庫名稱篩選" #: libraries/navigation/NavigationTree.class.php:1036 #: libraries/navigation/NavigationTree.class.php:1062 @@ -7223,10 +7203,9 @@ msgid "Clear Fast Filter" msgstr "" #: libraries/navigation/NavigationTree.class.php:1061 -#, fuzzy #| msgid "filter tables by name" msgid "filter items by name" -msgstr "請輸入部分或完整的表名" +msgstr "依項目名稱篩選" #. l10n: The word "Node" must not be translated here #: libraries/navigation/NodeFactory.class.php:41 @@ -7653,10 +7632,9 @@ msgstr "Event" #: libraries/rte/rte_events.lib.php:513 #: libraries/rte/rte_routines.lib.php:1031 #: libraries/rte/rte_triggers.lib.php:401 -#, fuzzy #| msgid "Description" msgid "Definition" -msgstr "說明" +msgstr "定義" #: libraries/plugins/export/ExportHtmlword.class.php:551 #: libraries/plugins/export/ExportOdt.class.php:641 @@ -7749,13 +7727,12 @@ msgstr "PHP 版本" #, fuzzy #| msgid "Export contents" msgid "Export table names" -msgstr "匯出內容" +msgstr "要匯出資料表的名稱" #: libraries/plugins/export/ExportMediawiki.class.php:90 -#, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" -msgstr "水平 (旋轉標題)" +msgstr "匯出資料表的標題" #: libraries/plugins/export/ExportPdf.class.php:97 msgid "(Generates a report containing the data of a single table)" @@ -7806,10 +7783,9 @@ msgstr "" "表)" #: libraries/plugins/export/ExportSql.class.php:295 -#, fuzzy #| msgid "Object creation options" msgid "Data creation options" -msgstr "物件建立選項" +msgstr "資料建立選項" #: libraries/plugins/export/ExportSql.class.php:299 #: libraries/plugins/export/ExportSql.class.php:1649 @@ -7972,10 +7948,10 @@ msgid "MediaWiki Table" msgstr "MediaWiki 表" #: libraries/plugins/import/ImportMediawiki.class.php:303 -#, fuzzy, php-format +#, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." -msgstr "CSV 輸入的第 %d 行格式有錯" +msgstr "mediawiki 輸入在此行格式錯誤:
%s." #: libraries/plugins/import/ImportOds.class.php:88 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" @@ -8173,7 +8149,6 @@ msgid "not OK" msgstr "錯誤" #: libraries/relation.lib.php:94 -#, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" @@ -8417,10 +8392,9 @@ msgstr "要求處理得程序中有錯誤" #: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:931 #: libraries/rte/rte_triggers.lib.php:347 -#, fuzzy #| msgid "Details…" msgid "Details" -msgstr "詳細…" +msgstr "詳細" #: libraries/rte/rte_events.lib.php:420 msgid "Event name" @@ -8431,10 +8405,10 @@ msgid "Event type" msgstr "Event 類型" #: libraries/rte/rte_events.lib.php:463 libraries/rte/rte_routines.lib.php:954 -#, fuzzy, php-format +#, php-format #| msgid "Change" msgid "Change to %s" -msgstr "修改" +msgstr "修改為 %s" #: libraries/rte/rte_events.lib.php:469 msgid "Execute at" @@ -8445,14 +8419,12 @@ msgid "Execute every" msgstr "" #: libraries/rte/rte_events.lib.php:496 -#, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" -msgstr "起始頁" +msgstr "起始" #: libraries/rte/rte_events.lib.php:505 -#, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" @@ -8509,10 +8481,9 @@ msgid "Event scheduler status" msgstr "Event 排程狀態" #: libraries/rte/rte_list.lib.php:55 -#, fuzzy #| msgid "Return type" msgid "Returns" -msgstr "返回類型" +msgstr "返回" #: libraries/rte/rte_routines.lib.php:69 msgid "" @@ -8524,38 +8495,36 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:281 #: libraries/rte/rte_routines.lib.php:1118 -#, fuzzy, php-format +#, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" -msgstr "無效的伺服器索引: %s" +msgstr "無效的函式類型: \"%s\"" #: libraries/rte/rte_routines.lib.php:321 msgid "Sorry, we failed to restore the dropped routine." msgstr "" #: libraries/rte/rte_routines.lib.php:332 -#, fuzzy, php-format +#, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." -msgstr "已刪除欄位 %s " +msgstr "函式的 %1$s 已被修改。" #: libraries/rte/rte_routines.lib.php:353 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." -msgstr "建立資料表 %1$s 成功" +msgstr "函式 %1$s 已建立成功。" #: libraries/rte/rte_routines.lib.php:434 -#, fuzzy #| msgid "Edit mode" msgid "Edit routine" -msgstr "編輯模式" +msgstr "編輯函式" #: libraries/rte/rte_routines.lib.php:934 -#, fuzzy #| msgid "Routines" msgid "Routine name" -msgstr "一般" +msgstr "函式名稱" #: libraries/rte/rte_routines.lib.php:960 msgid "Parameters" @@ -8565,7 +8534,7 @@ msgstr "" #, fuzzy #| msgid "Direct links" msgid "Direction" -msgstr "直接連線" +msgstr "方向" #: libraries/rte/rte_routines.lib.php:969 #: libraries/tbl_columns_definition_form.inc.php:98 @@ -8577,36 +8546,32 @@ msgid "Add parameter" msgstr "" #: libraries/rte/rte_routines.lib.php:988 -#, fuzzy #| msgid "Remove database" msgid "Remove last parameter" -msgstr "刪除資料庫" +msgstr "移除最後的參數" #: libraries/rte/rte_routines.lib.php:993 msgid "Return type" msgstr "返回類型" #: libraries/rte/rte_routines.lib.php:1000 -#, fuzzy #| msgid "Length/Values" msgid "Return length/values" -msgstr "長度/值" +msgstr "返回長度/值" #: libraries/rte/rte_routines.lib.php:1006 -#, fuzzy #| msgid "Table options" msgid "Return options" -msgstr "表選項" +msgstr "返回選項" #: libraries/rte/rte_routines.lib.php:1037 msgid "Is deterministic" msgstr "" #: libraries/rte/rte_routines.lib.php:1047 -#, fuzzy #| msgid "Security" msgid "Security type" -msgstr "安全" +msgstr "安全類型" #: libraries/rte/rte_routines.lib.php:1056 msgid "SQL data access" @@ -8641,10 +8606,10 @@ msgid "You must provide a routine definition." msgstr "" #: libraries/rte/rte_routines.lib.php:1367 -#, fuzzy, php-format +#, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" -msgstr "允許運行 Procedure" +msgstr "執行函式 %s 的結果" #: libraries/rte/rte_routines.lib.php:1432 #, php-format @@ -8659,41 +8624,37 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1569 #: libraries/rte/rte_routines.lib.php:1572 -#, fuzzy #| msgid "Routines" msgid "Routine parameters" -msgstr "一般" +msgstr "函式的參數" #: libraries/rte/rte_triggers.lib.php:106 msgid "Sorry, we failed to restore the dropped trigger." msgstr "" #: libraries/rte/rte_triggers.lib.php:116 -#, fuzzy, php-format +#, php-format #| msgid "Column %s has been dropped" msgid "Trigger %1$s has been modified." -msgstr "已刪除欄位 %s " +msgstr "觸發器 %1$s 已被修改。" #: libraries/rte/rte_triggers.lib.php:136 -#, fuzzy, php-format +#, php-format #| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." -msgstr "建立資料表 %1$s 成功" +msgstr "建立觸發器 %1$s 成功。" #: libraries/rte/rte_triggers.lib.php:204 -#, fuzzy #| msgid "Add a new server" msgid "Edit trigger" -msgstr "新增伺服器" +msgstr "編輯觸發器" #: libraries/rte/rte_triggers.lib.php:350 -#, fuzzy #| msgid "Triggers" msgid "Trigger name" -msgstr "觸發器" +msgstr "觸發器名稱" #: libraries/rte/rte_triggers.lib.php:373 -#, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" @@ -8712,86 +8673,77 @@ msgid "You must provide a valid event for the trigger" msgstr "您必須為 Event 指定一個正確觸發條件" #: libraries/rte/rte_triggers.lib.php:474 -#, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" -msgstr "無效的資料資料表名稱" +msgstr "您必須提供一個合法的資料表名稱" #: libraries/rte/rte_triggers.lib.php:480 msgid "You must provide a trigger definition." msgstr "" #: libraries/rte/rte_words.lib.php:22 -#, fuzzy #| msgid "Add index" msgid "Add routine" -msgstr "新增索引" +msgstr "新增函式" #: libraries/rte/rte_words.lib.php:24 -#, fuzzy, php-format +#, php-format #| msgid "Export defaults" msgid "Export of routine %s" -msgstr "匯出選項" +msgstr "匯出函式 %s" #: libraries/rte/rte_words.lib.php:25 -#, fuzzy #| msgid "Routines" msgid "routine" -msgstr "一般" +msgstr "函式" #: libraries/rte/rte_words.lib.php:26 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a routine" -msgstr "權限不足!" +msgstr "您無建立函式的權限" #: libraries/rte/rte_words.lib.php:27 -#, fuzzy, php-format +#, php-format #| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" -msgstr "沒有在資料庫中找到表" +msgstr "在資料庫 %2$s 中無此函式名稱 %1$s" #: libraries/rte/rte_words.lib.php:28 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no routines to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有函式可供顯示。" #: libraries/rte/rte_words.lib.php:34 -#, fuzzy #| msgid "Add a new server" msgid "Add trigger" -msgstr "新增伺服器" +msgstr "新增觸發器" #: libraries/rte/rte_words.lib.php:36 -#, fuzzy, php-format +#, php-format #| msgid "Export contents" msgid "Export of trigger %s" -msgstr "匯出內容" +msgstr "匯出觸發器 %s" #: libraries/rte/rte_words.lib.php:37 -#, fuzzy #| msgid "Triggers" msgid "trigger" msgstr "觸發器" #: libraries/rte/rte_words.lib.php:38 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a trigger" -msgstr "權限不足!" +msgstr "您無建立觸發器的權限" #: libraries/rte/rte_words.lib.php:39 -#, fuzzy, php-format +#, php-format #| msgid "No tables found in database" msgid "No trigger with name %1$s found in database %2$s" -msgstr "沒有在資料庫中找到表" +msgstr "資料庫 %2$s 中無此觸發器 %1$s" #: libraries/rte/rte_words.lib.php:40 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no triggers to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有觸發器可供顯示。" #: libraries/rte/rte_words.lib.php:46 msgid "Add event" @@ -8816,10 +8768,9 @@ msgid "No event with name %1$s found in database %2$s" msgstr "在資料庫「%2$s」中找不到名為「%1$s」的 Event" #: libraries/rte/rte_words.lib.php:52 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no events to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有事件可供顯示。" #: libraries/schema/Dia_Relation_Schema.class.php:236 #: libraries/schema/Eps_Relation_Schema.class.php:425 @@ -9259,10 +9210,9 @@ msgid "Grant" msgstr "授權" #: libraries/server_privileges.lib.php:1605 -#, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." -msgstr "已刪除 view %s" +msgstr "已新增使用者。" #: libraries/server_privileges.lib.php:1613 msgctxt "Create new user" @@ -9375,13 +9325,12 @@ msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限。" #: libraries/server_privileges.lib.php:2787 -#, fuzzy, php-format +#, php-format #| msgid "Privileges" msgid "Privileges for %s" -msgstr "權限" +msgstr "權限 %s" #: libraries/server_privileges.lib.php:2897 -#, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "查看使用者" @@ -9585,20 +9534,18 @@ msgid "Fulltext" msgstr "全文搜尋" #: libraries/structure.lib.php:1423 libraries/structure.lib.php:1519 -#, fuzzy #| msgid "Remove column(s)" msgid "Move columns" -msgstr "刪除欄位" +msgstr "移動欄位" #: libraries/structure.lib.php:1426 msgid "Move the columns by dragging them up and down." msgstr "" #: libraries/structure.lib.php:1460 -#, fuzzy #| msgid "Print view" msgid "Edit view" -msgstr "列印預覽" +msgstr "編輯視表" #: libraries/structure.lib.php:1493 msgid "Relation view" @@ -9637,7 +9584,6 @@ msgid "After %s" msgstr "於 %s 之後" #: libraries/structure.lib.php:1670 -#, fuzzy #| msgid "Row Statistics" msgid "Row statistics" msgstr "行統計" @@ -9678,10 +9624,9 @@ msgid "A primary key has been added on %s" msgstr "已將 %s 設爲主鍵" #: libraries/structure.lib.php:2003 libraries/structure.lib.php:2074 -#, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" -msgstr "瀏覽非重複值 (DISTINCT)" +msgstr "不同的值" #: libraries/structure.lib.php:2006 libraries/structure.lib.php:2009 msgid "Add primary key" @@ -9697,10 +9642,9 @@ msgid "Add unique index" msgstr "新增唯一鍵" #: libraries/structure.lib.php:2024 libraries/structure.lib.php:2027 -#, fuzzy #| msgid "Add index" msgid "Add SPATIAL index" -msgstr "新增索引" +msgstr "新增 SPATIAL 索引" #: libraries/structure.lib.php:2030 libraries/structure.lib.php:2033 msgid "Add FULLTEXT index" @@ -9724,16 +9668,14 @@ msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" #: libraries/structure.lib.php:2412 tbl_tracking.php:456 tbl_tracking.php:480 -#, fuzzy #| msgid "Query type" msgid "Query error" -msgstr "查詢方式" +msgstr "查詢錯誤" #: libraries/structure.lib.php:2506 -#, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." -msgstr "已成功刪除選中的使用者" +msgstr "欄位已搬移成功。" #: libraries/tbl_columns_definition_form.inc.php:101 msgid "" @@ -9752,10 +9694,9 @@ msgid "" msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a" #: libraries/tbl_columns_definition_form.inc.php:149 -#, fuzzy #| msgid "Remove column(s)" msgid "Move column" -msgstr "刪除欄位" +msgstr "搬移欄位" #: libraries/tbl_columns_definition_form.inc.php:159 #, php-format @@ -9800,7 +9741,7 @@ msgid "first" msgstr "" #: libraries/tbl_columns_definition_form.inc.php:644 -#, fuzzy, php-format +#, php-format #| msgid "After %s" msgid "after %s" msgstr "於 %s 之後" @@ -9814,10 +9755,10 @@ msgid "PARTITION definition" msgstr "分區定義" #: libraries/tbl_common.inc.php:54 -#, fuzzy, php-format +#, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." -msgstr "%s.%s 的追蹤已啓用" +msgstr "%s 的追蹤已啓用。" #: libraries/user_preferences.inc.php:29 msgid "Manage your settings" @@ -9910,10 +9851,9 @@ msgid "Toggle small/big" msgstr "反向收縮/展開" #: pmd_general.php:141 -#, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" -msgstr "要選擇關聯,點選:" +msgstr "請點選關聯行" #: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" @@ -10147,11 +10087,13 @@ msgid "Character Sets and Collations" msgstr "字集和排序規則" #: server_databases.php:117 -#, fuzzy, php-format +#, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." -msgstr[0] "已成功刪除 %s 個資料庫" +msgstr[0] "" +"已成功刪除 %1$d 個資料庫。\n" +"已成功刪除 %1$d 個資料庫。" #: server_databases.php:138 msgid "Databases statistics" @@ -10222,7 +10164,6 @@ msgid "License" msgstr "" #: server_plugins.php:165 -#, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "已關閉" @@ -10419,10 +10360,10 @@ msgid "Network traffic since startup: %s" msgstr "" #: server_status.php:83 -#, fuzzy, php-format +#, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" +msgstr "此 MySQL 伺服器已經運行了 %1$s,啓動時間爲 %2$s。" #: server_status.php:93 msgid "" @@ -10487,9 +10428,8 @@ msgid "Command" msgstr "命令" #: server_status_advisor.php:29 -#, fuzzy msgid "Instructions" -msgstr "資料" +msgstr "指令" #: server_status_advisor.php:35 msgid "" @@ -10522,7 +10462,7 @@ msgstr "" #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" -msgstr "文字框行" +msgstr "開始觀察(monitor)" #: server_status_monitor.php:479 msgid "Instructions/Setup" @@ -10533,33 +10473,29 @@ msgid "Done dragging (rearranging) charts" msgstr "" #: server_status_monitor.php:489 server_status_monitor.php:606 -#, fuzzy #| msgid "Add index" msgid "Add chart" -msgstr "新增索引" +msgstr "新增圖表" #: server_status_monitor.php:492 -#, fuzzy #| msgid "Enable highlighting" msgid "Enable charts dragging" -msgstr "啓用醒目提示" +msgstr "啓用圖表拖放" #: server_status_monitor.php:496 -#, fuzzy msgid "Refresh rate" -msgstr "重新整理" +msgstr "更新頻率" #: server_status_monitor.php:505 -#, fuzzy #| msgid "Textarea columns" msgid "Chart columns" -msgstr "文本框列" +msgstr "圖表欄位" #: server_status_monitor.php:521 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" -msgstr "錯誤管理:" +msgstr "圖表排列" #: server_status_monitor.php:524 msgid "" @@ -10568,15 +10504,13 @@ msgid "" msgstr "" #: server_status_monitor.php:538 -#, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "還原預設值" #: server_status_monitor.php:544 -#, fuzzy msgid "Monitor Instructions" -msgstr "資料" +msgstr "監督指令" #: server_status_monitor.php:546 msgid "" @@ -10627,32 +10561,29 @@ msgid "" msgstr "" #: server_status_monitor.php:610 -#, fuzzy #| msgid "Remove database" msgid "Preset chart" -msgstr "刪除資料庫" +msgstr "預設圖表" #: server_status_monitor.php:614 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" -msgstr "查看從伺服器狀態" +msgstr "狀態變數值" #: server_status_monitor.php:617 -#, fuzzy #| msgid "Select Tables" msgid "Select series:" -msgstr "選擇表" +msgstr "選擇序列:" #: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" #: server_status_monitor.php:635 -#, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" -msgstr "無效的資料資料表名稱" +msgstr "或變數型態名稱:" #: server_status_monitor.php:642 msgid "Display as differential value" @@ -10667,32 +10598,28 @@ msgid "Append unit to data values" msgstr "" #: server_status_monitor.php:659 -#, fuzzy #| msgid "Add a new server" msgid "Add this series" -msgstr "新增伺服器" +msgstr "新增這個序列" #: server_status_monitor.php:661 msgid "Clear series" msgstr "" #: server_status_monitor.php:664 -#, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" -msgstr "SQL 查詢" +msgstr "圖表中的序列:" #: server_status_monitor.php:675 -#, fuzzy #| msgid "Show statistics" msgid "Log statistics" -msgstr "顯示統計" +msgstr "紀錄統計" #: server_status_monitor.php:676 -#, fuzzy #| msgid "Select page" msgid "Selected time range:" -msgstr "選擇頁" +msgstr "選擇時間範圍:" #: server_status_monitor.php:682 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" @@ -10711,30 +10638,33 @@ msgid "Results are grouped by query text." msgstr "" #: server_status_monitor.php:697 -#, fuzzy #| msgid "Query type" msgid "Query analyzer" -msgstr "查詢方式" +msgstr "查詢分析" #: server_status_monitor.php:745 -#, fuzzy, php-format +#, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "秒" +msgstr[0] "" +"%d 秒\n" +"%d 秒" #: server_status_monitor.php:748 -#, fuzzy, php-format +#, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "分" +msgstr[0] "" +"%d 分\n" +"%d 分" #: server_status_queries.php:67 -#, fuzzy, php-format +#, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" -msgstr "自訂起始頁" +msgstr "自啟動後的問題:%s" #: server_status_queries.php:102 msgid "Statements" @@ -10751,32 +10681,28 @@ msgid "Filters" msgstr "過濾" #: server_status_variables.php:82 server_variables.php:158 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "保持原密碼" +msgstr "包含這個字:" #: server_status_variables.php:89 -#, fuzzy #| msgid "Show open tables" msgid "Show only alert values" -msgstr "顯示開啟的表" +msgstr "只顯示警示值" #: server_status_variables.php:94 msgid "Filter by category…" msgstr "" #: server_status_variables.php:114 -#, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" -msgstr "顯示開啟的表" +msgstr "顯示未格式化的值" #: server_status_variables.php:133 -#, fuzzy #| msgid "Related Links" msgid "Related links:" -msgstr "相關連結" +msgstr "相關連結:" #: server_status_variables.php:331 msgid "" @@ -10785,10 +10711,9 @@ msgid "" msgstr "" #: server_status_variables.php:335 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." -msgstr "無法連線到 MySQL 伺服器" +msgstr "無法連線到 MySQL 伺服器。" #: server_status_variables.php:338 msgid "" @@ -11160,10 +11085,9 @@ msgid "" msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量。" #: server_status_variables.php:597 -#, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" -msgstr "匯入檔案的格式" +msgstr "已使用鍵值緩存的百分比(計算值)" #: server_status_variables.php:600 msgid "The number of requests to read a key block from the cache." @@ -11399,10 +11323,9 @@ msgstr "" "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" #: server_status_variables.php:759 -#, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" -msgstr "追蹤已停用" +msgstr "執行序緩存命中率(計算值)" #: server_status_variables.php:762 msgid "The number of threads that are not sleeping." @@ -11464,10 +11387,9 @@ msgid "Insecure connection" msgstr "非安全連線" #: setup/frames/index.inc.php:98 -#, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." -msgstr "修改已儲存" +msgstr "設定已儲存。" #: setup/frames/index.inc.php:99 msgid "" @@ -11706,10 +11628,9 @@ msgid "" msgstr "此系統目前不支援 %sZip 解壓縮%s所必須的 (%s) 函數。" #: setup/lib/index.lib.php:348 -#, fuzzy #| msgid "You should use SSL connections if your web server supports it." msgid "You should use SSL connections if your database server supports it." -msgstr "如果伺服器支援,您應該使用 SSL 連線" +msgstr "如果資料庫支援,您應該使用 SSL 連線。" #: setup/lib/index.lib.php:363 msgid "You should use mysqli for performance reasons." @@ -11728,10 +11649,9 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元。" #: setup/validate.php:22 -#, fuzzy #| msgid "No databases" msgid "Wrong data" -msgstr "沒有資料庫" +msgstr "錯誤的資料" #: sql.php:304 #, php-format @@ -11739,10 +11659,9 @@ msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢。" #: sql.php:386 -#, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" -msgstr "已建立書籤 %s" +msgstr "書籤並未建立" #: sql.php:928 msgid "Showing as PHP code" @@ -11780,10 +11699,9 @@ msgid "Label" msgstr "標籤" #: tbl_chart.php:38 -#, fuzzy #| msgid "No databases" msgid "No data to display" -msgstr "沒有資料庫" +msgstr "無資料可顯示" #: tbl_chart.php:62 tbl_gis_visualization.php:24 msgid "No SQL query was set to fetch data." @@ -11794,21 +11712,18 @@ msgid "No numeric columns present in the table to plot." msgstr "" #: tbl_chart.php:154 -#, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" -msgstr "柱狀圖" +msgstr "長條圖" #: tbl_chart.php:156 -#, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "欄位" #: tbl_chart.php:159 -#, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" @@ -11819,7 +11734,7 @@ msgstr "折線圖" #| msgid "Inline" msgctxt "Chart type" msgid "Spline" -msgstr "行間" +msgstr "Spline" #: tbl_chart.php:163 msgctxt "Chart type" @@ -11827,56 +11742,49 @@ msgid "Area" msgstr "" #: tbl_chart.php:166 -#, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "餅圖" #: tbl_chart.php:170 -#, fuzzy #| msgid "Time" msgctxt "Chart type" msgid "Timeline" -msgstr "時間" +msgstr "時間軸" #: tbl_chart.php:177 msgid "Stacked" msgstr "堆疊" #: tbl_chart.php:180 -#, fuzzy #| msgid "Report title:" msgid "Chart title" -msgstr "報告標題:" +msgstr "圖表標題" #: tbl_chart.php:184 msgid "X-Axis:" msgstr "" #: tbl_chart.php:200 -#, fuzzy #| msgid "SQL queries" msgid "Series:" -msgstr "SQL 查詢" +msgstr "序列:" #: tbl_chart.php:229 -#, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" -msgstr "水平軸標籤" +msgstr "水平軸標籤:" #: tbl_chart.php:232 -#, fuzzy #| msgid "Value" msgid "X Values" -msgstr "值" +msgstr "水平軸值" #: tbl_chart.php:234 -#, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "豎直軸標籤" +msgstr "垂直軸標籤:" #: tbl_create.php:32 #, php-format @@ -11901,35 +11809,32 @@ msgstr "查看資料表的轉存(大綱)" #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" -msgstr "顯示伺服器選擇" +msgstr "顯示可視化地理訊息" #: tbl_gis_visualization.php:119 -#, fuzzy #| msgid "Textarea columns" msgid "Label column" -msgstr "文本框列" +msgstr "標籤欄位" #: tbl_gis_visualization.php:121 -#, fuzzy #| msgid "- none -" msgid "-- None --" -msgstr "- 無 -" +msgstr "-- 無 --" #: tbl_gis_visualization.php:135 #, fuzzy #| msgid "Total count" msgid "Spatial column" -msgstr "總數量" +msgstr "Spatial 欄位" #: tbl_gis_visualization.php:150 msgid "Redraw" msgstr "重繪" #: tbl_gis_visualization.php:178 -#, fuzzy #| msgid "Table name" msgid "File name" -msgstr "資料資料表名稱" +msgstr "檔案名稱" #: tbl_indexes.php:71 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -11944,10 +11849,9 @@ msgid "No index parts defined!" msgstr "沒有定義的索引部分!" #: tbl_indexes.php:197 -#, fuzzy #| msgid "Edit mode" msgid "Edit index" -msgstr "編輯模式" +msgstr "編輯索引" #: tbl_indexes.php:209 msgid "Index name:" @@ -11959,10 +11863,9 @@ msgid "" msgstr "(“PRIMARY”必須而且只能作爲主鍵的名稱!)" #: tbl_indexes.php:234 -#, fuzzy #| msgid "Comment" msgid "Comment:" -msgstr "註解" +msgstr "註解:" #: tbl_indexes.php:249 msgid "Index type:" @@ -12020,22 +11923,19 @@ msgid "Foreign key constraint" msgstr "外部鍵約束" #: tbl_relation.php:498 -#, fuzzy #| msgid "Constraints for table" msgid "Constraint name" -msgstr "資料表的 Constraints" +msgstr "約束名稱" #: tbl_relation.php:529 -#, fuzzy #| msgid "No index defined!" msgid "No index defined! Create one below" -msgstr "沒有已定義的索引!" +msgstr "未定義索引! 請建立一個" #: tbl_structure.php:125 -#, fuzzy #| msgid "No rows selected" msgid "No column selected." -msgstr "沒有選中任何行" +msgstr "未選定欄位。" #: tbl_structure.php:149 #, php-format @@ -12048,22 +11948,22 @@ msgid "Tracking report for table `%s`" msgstr "`%s` 的追蹤報告" #: tbl_tracking.php:205 -#, fuzzy, php-format +#, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." -msgstr "已建立版本 %s,%s.%s 的追蹤已啓用" +msgstr "已建立版本 %1$s,%2$s 的追蹤已啓用。" #: tbl_tracking.php:222 -#, fuzzy, php-format +#, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." -msgstr "%s.%s 的追蹤已啓用" +msgstr "在版本 %2$s 已停用 %1$s 的追蹤。" #: tbl_tracking.php:239 -#, fuzzy, php-format +#, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." -msgstr "%s.%s 的追蹤已啓用" +msgstr "在版本 %2$s 已啟用 %1$s 的追。" #: tbl_tracking.php:253 msgid "SQL statements executed." @@ -12089,10 +11989,9 @@ msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 程式碼)" #: tbl_tracking.php:453 -#, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "追蹤這些資料定義的語句:" +msgstr "追蹤資料定義已刪除" #: tbl_tracking.php:477 #, fuzzy From 6e6e9048b9105bdfabc43119f2b41be2a18fcd86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 19 Jun 2013 09:43:37 +0200 Subject: [PATCH 14/52] Translated using Weblate (Traditional Chinese) Currently translated at 85.4% (2284 of 2673) --- po/zh_TW.po | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index f4f65a859c..4d45dc4423 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-18 23:06+0200\n" -"Last-Translator: Tony Chen \n" +"PO-Revision-Date: 2013-06-19 09:43+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Traditional Chinese " "\n" "Language: zh_TW\n" @@ -10934,18 +10934,14 @@ msgstr "查詢分析" #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "" -"%d 秒\n" -"%d 秒" +msgstr[0] "%d 秒" #: server_status_monitor.php:657 #, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "" -"%d 分\n" -"%d 分" +msgstr[0] "%d 分" #: server_status_monitor.php:674 #, fuzzy From b34235328ac76b7146e2691790e11ecba6f5fad8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 19 Jun 2013 14:00:49 +0530 Subject: [PATCH 15/52] Check whether file exists before reading --- libraries/Config.class.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 9a576ebd6c..076fbd137e 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -456,7 +456,7 @@ class PMA_Config } $commit = false; - if ( !isset($_SESSION['PMA_VERSION_COMMITDATA_' . $hash])) { + if (! isset($_SESSION['PMA_VERSION_COMMITDATA_' . $hash])) { $git_file_name = $git_folder . '/objects/' . substr($hash, 0, 2) . '/' . substr($hash, 2); if (file_exists($git_file_name) ) { @@ -469,7 +469,9 @@ class PMA_Config } else { $pack_names = array(); // work with packed data - if ($packs = @file_get_contents($git_folder . '/objects/info/packs')) { + if (file_exists($git_folder . '/objects/info/packs') + && $packs = @file_get_contents($git_folder . '/objects/info/packs') + ) { // File exists. Read it, parse the file to get the names of the // packs. (to look for them in .git/object/pack directory later) foreach (explode("\n", $packs) as $line) { From cd28acd80737f2ccf43bab4160fd5abb8fd05f51 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 19 Jun 2013 14:25:08 +0530 Subject: [PATCH 16/52] Wrap a long line --- libraries/Util.class.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libraries/Util.class.php b/libraries/Util.class.php index 72d23f373d..67439eaa98 100644 --- a/libraries/Util.class.php +++ b/libraries/Util.class.php @@ -3318,7 +3318,9 @@ class PMA_Util /* Fetch columns list if required */ if (strpos($string, '@COLUMNS@') !== false) { - $columns_list = $GLOBALS['dbi']->getColumns($GLOBALS['db'], $GLOBALS['table']); + $columns_list = $GLOBALS['dbi']->getColumns( + $GLOBALS['db'], $GLOBALS['table'] + ); // sometimes the table no longer exists at this point if (! is_null($columns_list)) { From 7ce2913580ee86aaf27c4d64f0e8a4fde087e89a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 19 Jun 2013 16:37:48 +0530 Subject: [PATCH 17/52] Wrap some long lines --- .../navigation/Nodes/Node_Database.class.php | 20 ++++++++++++++----- .../navigation/Nodes/Node_Table.class.php | 12 ++++++++--- 2 files changed, 24 insertions(+), 8 deletions(-) diff --git a/libraries/navigation/Nodes/Node_Database.class.php b/libraries/navigation/Nodes/Node_Database.class.php index 7c2a1717b4..46c555fd14 100644 --- a/libraries/navigation/Nodes/Node_Database.class.php +++ b/libraries/navigation/Nodes/Node_Database.class.php @@ -82,7 +82,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'views': @@ -113,7 +115,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'procedures': @@ -141,7 +145,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'functions': @@ -169,7 +175,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'events': @@ -196,7 +204,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; default: diff --git a/libraries/navigation/Nodes/Node_Table.class.php b/libraries/navigation/Nodes/Node_Table.class.php index 3555254f17..e5d4d2d77e 100644 --- a/libraries/navigation/Nodes/Node_Table.class.php +++ b/libraries/navigation/Nodes/Node_Table.class.php @@ -69,14 +69,18 @@ class Node_Table extends Node $db = PMA_Util::backquote($db); $table = PMA_Util::backquote($table); $query = "SHOW COLUMNS FROM $table FROM $db"; - $retval = (int)$GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = (int)$GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'indexes': $db = PMA_Util::backquote($db); $table = PMA_Util::backquote($table); $query = "SHOW INDEXES FROM $table FROM $db"; - $retval = (int)$GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = (int)$GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); break; case 'triggers': if (! $GLOBALS['cfg']['Servers'][$GLOBALS['server']]['DisableIS']) { @@ -91,7 +95,9 @@ class Node_Table extends Node $db = PMA_Util::backquote($db); $table = PMA_Util::sqlAddSlashes($table); $query = "SHOW TRIGGERS FROM $db WHERE `Table` = '$table'"; - $retval = (int)$GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = (int)$GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; default: From b9da627b43ca2e479e361e223d9dde4f92903cb7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 19 Jun 2013 16:43:47 +0530 Subject: [PATCH 18/52] Simplify if condition --- libraries/navigation/NavigationTree.class.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index a8a6827ccb..dc04dd995a 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -886,12 +886,9 @@ class PMA_NavigationTree 'indexes' ); $parent = $node->parents(false, true); + $isNewView = $parent[0]->real_name == 'views' && $node->isNew == true; if ($parent[0]->type == Node::CONTAINER - && (in_array($parent[0]->real_name, $haveAjax) - || ($parent[0]->real_name == 'views' - && $node->isNew == true - ) - ) + && (in_array($parent[0]->real_name, $haveAjax) || $isNewView) ) { $linkClass = ' class="ajax"'; } From 93c2f414cddb8ab810fbaaae346073a8123dfda5 Mon Sep 17 00:00:00 2001 From: Spun Nakandala Date: Wed, 19 Jun 2013 17:52:57 +0530 Subject: [PATCH 19/52] removed the redundant variable $bkm_user --- sql.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sql.php b/sql.php index eae1bea97e..81fb8d5f56 100644 --- a/sql.php +++ b/sql.php @@ -1002,8 +1002,7 @@ if ((0 == $num_rows && 0 == $unlim_num_rows) || $is_affected) { $bkm_sql_query = urlencode( isset($complete_query) ? $complete_query : $sql_query ); - $bkm_user = $cfg['Bookmark']['user']; - $html_output .= PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query, $bkm_user); + $html_output .= PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query, $cfg['Bookmark']['user']); } // end bookmark support // Do print the page if required From 9865604cd8274f304553e8311dd2d9215c03d571 Mon Sep 17 00:00:00 2001 From: Raimund Meyer Date: Wed, 19 Jun 2013 12:38:23 +0200 Subject: [PATCH 20/52] Translated using Weblate (German) Currently translated at 95.2% (2545 of 2673) --- po/de.po | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/po/de.po b/po/de.po index 31c5421403..648f1201c4 100644 --- a/po/de.po +++ b/po/de.po @@ -4,10 +4,9 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-05-30 13:31+0200\n" -"Last-Translator: Michal Čihař \n" -"Language-Team: German \n" +"PO-Revision-Date: 2013-06-19 12:38+0200\n" +"Last-Translator: Raimund Meyer \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,10 +40,9 @@ msgstr "" "Zugriff aufgrund Ihrer Sicherheitseinstellungen." #: browse_foreigners.php:182 -#, fuzzy #| msgid "Search" msgid "Search:" -msgstr "Suche" +msgstr "Suche:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 #: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 @@ -120,10 +118,9 @@ msgstr "Datenbankkommentar: " #: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1336 #: libraries/tbl_columns_definition_form.inc.php:836 tbl_printview.php:120 -#, fuzzy #| msgid "Table comments" msgid "Table comments:" -msgstr "Tabellen-Kommentar" +msgstr "Tabellenkommentar:" #: db_datadict.php:166 libraries/Index.class.php:565 #: libraries/TableSearch.class.php:183 libraries/TableSearch.class.php:1190 From 192c96047fbd6de88edfc81e7c5d5b9b576b9c7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 19 Jun 2013 09:43:45 +0200 Subject: [PATCH 21/52] Translated using Weblate (Traditional Chinese) Currently translated at 85.4% (2224 of 2603) --- po/zh_TW.po | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 7d3a847314..1ec3958e5b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-03 09:16-0400\n" -"PO-Revision-Date: 2013-06-18 23:06+0200\n" -"Last-Translator: Tony Chen \n" +"PO-Revision-Date: 2013-06-19 09:43+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Traditional Chinese " "\n" "Language: zh_TW\n" @@ -10656,9 +10656,7 @@ msgstr[0] "" #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "" -"%d 分\n" -"%d 分" +msgstr[0] "%d 分" #: server_status_queries.php:67 #, php-format From b6fe8177071af936b21aae76461ca0796aa75173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 19 Jun 2013 16:34:37 +0200 Subject: [PATCH 22/52] Fix translation --- po/zh_TW.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 1ec3958e5b..b54b2521e5 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -10647,9 +10647,7 @@ msgstr "查詢分析" #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "" -"%d 秒\n" -"%d 秒" +msgstr[0] "%d 秒" #: server_status_monitor.php:748 #, php-format From f0dafa6c6bf56b2fc96eff993e231b36c232acbd Mon Sep 17 00:00:00 2001 From: Yungu Kim Date: Tue, 18 Jun 2013 13:51:41 +0200 Subject: [PATCH 23/52] Translated using Weblate (Korean) Currently translated at 69.7% (1813 of 2603) --- po/ko.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/ko.po b/po/ko.po index b3a1a078db..dda3dc7576 100644 --- a/po/ko.po +++ b/po/ko.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-03 09:16-0400\n" -"PO-Revision-Date: 2013-06-15 08:50+0200\n" -"Last-Translator: Tae-rok Hwang \n" +"PO-Revision-Date: 2013-06-18 13:51+0200\n" +"Last-Translator: Yungu Kim \n" "Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" @@ -3229,17 +3229,17 @@ msgstr "" #: libraries/Theme_Manager.class.php:137 #, php-format msgid "Default theme %s not found!" -msgstr "기본테마 %s 를 찾을 수 없습니다." +msgstr "기본테마 %s를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:194 #, php-format msgid "Theme %s not found!" -msgstr "%s 테마를 찾을 수 없습니다." +msgstr "%s 테마를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:271 #, php-format msgid "Theme path not found for theme %s!" -msgstr "%s 테마를 위한 테마 경로를 찾을 수 없습니다." +msgstr "%s 테마의 경로를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" From ac901d86c4f2ecef21a8e1a4554520e98f5b279d Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Wed, 19 Jun 2013 16:34:19 +0200 Subject: [PATCH 24/52] Translated using Weblate (Traditional Chinese) Currently translated at 85.6% (2227 of 2603) --- po/zh_TW.po | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 1ec3958e5b..ab6dedcfaa 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-03 09:16-0400\n" -"PO-Revision-Date: 2013-06-19 09:43+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2013-06-19 16:34+0200\n" +"Last-Translator: Tony Chen \n" "Language-Team: Traditional Chinese " "\n" "Language: zh_TW\n" @@ -5126,21 +5126,19 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "丟失 phpMyAdmin 進階功能資料表" #: libraries/config/messages.inc.php:334 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " #| "cookie authentication" msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected" -msgstr "禁止顯示在使用 cookie 認證時缺少 mcrypt 的預設警告" +msgstr "如果偵測到 MySQL 函式庫和伺服器有所不同時禁用預設的警告顯示" #: libraries/config/messages.inc.php:335 msgid "Server/library difference warning" msgstr "" #: libraries/config/messages.inc.php:336 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " #| "Structure page if any of the required tables for the phpMyAdmin " @@ -5148,7 +5146,7 @@ msgstr "" msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words" -msgstr "禁止在缺少 phpMyAdmin 進階功能所需資料表時在資料庫結構頁中顯示預設警告" +msgstr "如果資料表欄位是 MySQL 保留字時,在顯示結構頁面禁用預設警告" #: libraries/config/messages.inc.php:337 msgid "MySQL reserved word warning" @@ -5320,14 +5318,13 @@ msgid "Bookmark table" msgstr "書籤表" #: libraries/config/messages.inc.php:378 -#, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" #| "pma_column_info[/kbd]" msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]" -msgstr "不使用欄位註解/MIME類型時留空白。建議值:[kbd]pma__column_info[/kbd]" +msgstr "無欄位註解/MIME類型時留空白。建議值:[kbd]pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -10383,9 +10380,7 @@ msgstr "此 MySQL 伺服器正以伺服器運行於複製程序 msgid "" "For further information about replication status on the server, please visit " "the replication section." -msgstr "" -"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" -"" +msgstr "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊。" #: server_status.php:122 msgid "Replication status" From 2e0ddab19551b391e2e14581430c77bc1786af27 Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Wed, 19 Jun 2013 16:34:20 +0200 Subject: [PATCH 25/52] Translated using Weblate (Traditional Chinese) Currently translated at 85.6% (2287 of 2673) --- po/zh_TW.po | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 4d45dc4423..f8109e53a5 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-19 09:43+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2013-06-19 16:34+0200\n" +"Last-Translator: Tony Chen \n" "Language-Team: Traditional Chinese " "\n" "Language: zh_TW\n" @@ -5193,21 +5193,19 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "丟失 phpMyAdmin 進階功能資料表" #: libraries/config/messages.inc.php:334 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " #| "cookie authentication" msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected" -msgstr "禁止顯示在使用 cookie 認證時缺少 mcrypt 的預設警告" +msgstr "如果偵測到 MySQL 函式庫和伺服器有所不同時禁用預設的警告顯示" #: libraries/config/messages.inc.php:335 msgid "Server/library difference warning" msgstr "" #: libraries/config/messages.inc.php:336 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " #| "Structure page if any of the required tables for the phpMyAdmin " @@ -5215,7 +5213,7 @@ msgstr "" msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words" -msgstr "禁止在缺少 phpMyAdmin 進階功能所需資料表時在資料庫結構頁中顯示預設警告" +msgstr "如果資料表欄位是 MySQL 保留字時,在顯示結構頁面禁用預設警告" #: libraries/config/messages.inc.php:337 msgid "MySQL reserved word warning" @@ -5387,14 +5385,13 @@ msgid "Bookmark table" msgstr "書籤表" #: libraries/config/messages.inc.php:378 -#, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: " #| "[kbd]pma_column_info[/kbd]" msgid "" "Leave blank for no column comments/mime types, suggested: " "[kbd]pma__column_info[/kbd]" -msgstr "不使用欄位註解/MIME類型時留空白。建議值:[kbd]pma__column_info[/kbd]" +msgstr "無欄位註解/MIME類型時留空白。建議值:[kbd]pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" From 90acaecf44a8376ff986e258f4e6b28a3c3ea695 Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Wed, 19 Jun 2013 16:34:19 +0200 Subject: [PATCH 26/52] Translated using Weblate (Traditional Chinese) Currently translated at 85.6% (2227 of 2603) --- po/zh_TW.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index ebe84d14dd..0f3fa5b389 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-03 09:16-0400\n" -"PO-Revision-Date: 2013-06-19 16:34+0200\n" +"PO-Revision-Date: 2013-06-19 16:35+0200\n" "Last-Translator: Tony Chen \n" "Language-Team: Traditional Chinese " "\n" @@ -5457,7 +5457,6 @@ msgid "Connect without password" msgstr "用空密碼連線" #: libraries/config/messages.inc.php:406 -#, fuzzy #| 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 " From a78df1b0eb3a806c7bf2a1b8769018c64eac05be Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 19 Jun 2013 11:38:05 -0400 Subject: [PATCH 27/52] Remove "Headers every x rows" from the Browse interface --- libraries/DisplayResults.class.php | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index bc22105ad1..63182fec2c 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -874,8 +874,8 @@ class PMA_DisplayResults /** - * Prepare feilds followed by Show button for table navigation - * Start row, Number of rows, Headers every + * Prepare fields followed by Show button for table navigation + * Start row, Number of rows * * @param string $html_sql_query the sql encoded by html special * characters @@ -913,7 +913,7 @@ class PMA_DisplayResults . '" class="textfield" onfocus="this.select()" />'; if ($GLOBALS['cfg']['ShowDisplayDirection']) { - // Display mode (horizontal/vertical and repeat headers) + // Display mode (horizontal/vertical) $additional_fields_html .= __('Mode:') . ' ' . "\n"; $choices = array( 'horizontal' => __('horizontal'), @@ -929,13 +929,6 @@ class PMA_DisplayResults unset($choices); } - $additional_fields_html .= sprintf( - __('Headers every %s rows'), - ' ' - ); - return $additional_fields_html; } // end of the '_getAdditionalFieldsForTableNavigation()' function @@ -4229,11 +4222,7 @@ class PMA_DisplayResults = $GLOBALS['cfg']['DefaultDisplay']; } - if (PMA_isValid($_REQUEST['repeat_cells'], 'numeric')) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells'] - = $_REQUEST['repeat_cells']; - unset($_REQUEST['repeat_cells']); - } elseif ( + if ( empty($_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells']) ) { $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells'] From be37260b9bd57ed6b641bdba6596be72d50f4aaf Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 19 Jun 2013 11:39:31 -0400 Subject: [PATCH 28/52] Update po files --- po/af.po | 894 ++++++++++++++++++------------------ po/ar.po | 955 +++++++++++++++++++------------------- po/az.po | 896 ++++++++++++++++++------------------ po/be.po | 928 ++++++++++++++++++------------------- po/be@latin.po | 942 ++++++++++++++++++------------------- po/bg.po | 930 +++++++++++++++++++------------------ po/bn.po | 916 ++++++++++++++++++------------------ po/br.po | 932 ++++++++++++++++++------------------- po/bs.po | 911 ++++++++++++++++++------------------ po/ca.po | 1002 ++++++++++++++++++++-------------------- po/ckb.po | 865 +++++++++++++++++----------------- po/cs.po | 986 ++++++++++++++++++++------------------- po/cy.po | 926 ++++++++++++++++++------------------- po/da.po | 987 ++++++++++++++++++++------------------- po/de.po | 1052 +++++++++++++++++++++--------------------- po/el.po | 1037 +++++++++++++++++++++-------------------- po/en_GB.po | 990 ++++++++++++++++++++------------------- po/es.po | 1053 +++++++++++++++++++++--------------------- po/et.po | 1040 +++++++++++++++++++++-------------------- po/eu.po | 914 ++++++++++++++++++------------------ po/fa.po | 914 ++++++++++++++++++------------------ po/fi.po | 1059 +++++++++++++++++++++--------------------- po/fr.po | 1013 ++++++++++++++++++++-------------------- po/gl.po | 1054 +++++++++++++++++++++--------------------- po/he.po | 904 ++++++++++++++++++------------------ po/hi.po | 944 +++++++++++++++++++------------------ po/hr.po | 932 ++++++++++++++++++------------------- po/hu.po | 1014 ++++++++++++++++++++-------------------- po/hy.po | 854 +++++++++++++++++----------------- po/ia.po | 858 +++++++++++++++++----------------- po/id.po | 982 +++++++++++++++++++-------------------- po/it.po | 1021 ++++++++++++++++++++--------------------- po/ja.po | 999 ++++++++++++++++++++-------------------- po/ka.po | 966 +++++++++++++++++++------------------- po/kk.po | 858 +++++++++++++++++----------------- po/kn.po | 854 +++++++++++++++++----------------- po/ko.po | 930 ++++++++++++++++++------------------- po/lt.po | 962 +++++++++++++++++++------------------- po/lv.po | 908 ++++++++++++++++++------------------ po/mk.po | 904 ++++++++++++++++++------------------ po/ml.po | 854 +++++++++++++++++----------------- po/mn.po | 924 ++++++++++++++++++------------------- po/ms.po | 898 ++++++++++++++++++------------------ po/nb.po | 1025 +++++++++++++++++++++-------------------- po/nl.po | 1008 ++++++++++++++++++++-------------------- po/pa.po | 854 +++++++++++++++++----------------- po/phpmyadmin.pot | 845 +++++++++++++++++----------------- po/pl.po | 1021 ++++++++++++++++++++--------------------- po/pt.po | 975 ++++++++++++++++++++------------------- po/pt_BR.po | 1004 ++++++++++++++++++++-------------------- po/ro.po | 1021 ++++++++++++++++++++--------------------- po/ru.po | 996 ++++++++++++++++++++-------------------- po/si.po | 971 ++++++++++++++++++++------------------- po/sk.po | 959 +++++++++++++++++++------------------- po/sl.po | 1018 ++++++++++++++++++++-------------------- po/sq.po | 915 ++++++++++++++++++------------------ po/sr.po | 920 ++++++++++++++++++------------------- po/sr@latin.po | 914 ++++++++++++++++++------------------ po/sv.po | 1002 ++++++++++++++++++++-------------------- po/ta.po | 870 +++++++++++++++++------------------ po/te.po | 896 ++++++++++++++++++------------------ po/th.po | 910 ++++++++++++++++++------------------ po/tk.po | 854 +++++++++++++++++----------------- po/tr.po | 1003 ++++++++++++++++++++-------------------- po/tt.po | 908 ++++++++++++++++++------------------ po/ug.po | 904 ++++++++++++++++++------------------ po/uk.po | 980 ++++++++++++++++++++------------------- po/ur.po | 977 ++++++++++++++++++++------------------- po/uz.po | 1024 +++++++++++++++++++++-------------------- po/uz@latin.po | 1043 +++++++++++++++++++++-------------------- po/zh_CN.po | 920 ++++++++++++++++++------------------- po/zh_TW.po | 1123 ++++++++++++++++++--------------------------- 72 files changed, 34100 insertions(+), 34522 deletions(-) diff --git a/po/af.po b/po/af.po index 7304484244..548fcda67b 100644 --- a/po/af.po +++ b/po/af.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-02-13 18:58+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Afrikaans \n" -"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: af\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.5-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "Soek" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "Soek" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Gaan" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 #, fuzzy msgid "Description" @@ -105,7 +105,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." @@ -136,7 +136,7 @@ msgstr "Tabel kommentaar" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -161,7 +161,7 @@ msgstr "Kolom name" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipe" @@ -178,7 +178,7 @@ msgstr "Tipe" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -193,7 +193,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Verstekwaarde (default)" @@ -235,9 +235,9 @@ msgstr "Kommentaar" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nee" @@ -262,9 +262,9 @@ msgstr "Nee" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -320,7 +320,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -400,7 +400,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databasis" @@ -408,18 +408,18 @@ msgstr "Databasis" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 #, fuzzy msgid "Created" msgstr "Skep" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -432,7 +432,7 @@ msgstr "" msgid "Action" msgstr "Aksie" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Wys" @@ -448,11 +448,11 @@ msgstr "" msgid "Drop" msgstr "Verwyder" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -461,11 +461,11 @@ msgstr "" msgid "Versions" msgstr "Operasies" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Slegs struktuur" @@ -624,8 +624,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -665,7 +665,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -687,7 +687,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -892,7 +892,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." @@ -902,7 +902,7 @@ msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." msgid "Do you really want to execute \"%s\"?" msgstr "Wil jy regtig " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -995,8 +995,8 @@ msgstr "Geen Regte" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1127,13 +1127,13 @@ msgstr "Bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1174,7 +1174,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1197,13 +1197,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Geen" @@ -1303,7 +1304,7 @@ msgstr "Algemene verwantskap funksies" msgid "Current settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy msgid "Chart Title" msgstr "Geen tabelle" @@ -1390,7 +1391,7 @@ msgstr "Verduidelik SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1495,7 +1496,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1559,7 +1560,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Local" @@ -1734,7 +1735,7 @@ msgstr "SQL-stelling" msgid "Show query box" msgstr "SQL-stelling" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1747,7 +1748,7 @@ msgstr "Verander" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1838,7 +1839,7 @@ msgstr "Tabel kommentaar" msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1856,7 +1857,7 @@ msgstr "Lyne beeindig deur" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2398,31 +2399,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Dalend" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2581,14 +2582,14 @@ msgstr "Beloer Data" msgid "Delete the matches for the %s table?" msgstr "Stort data vir tabel" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Verwyder" @@ -2697,16 +2698,11 @@ msgstr "" msgid "vertical" msgstr "vertikale" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2734,96 +2730,96 @@ msgstr "" msgid "Options" msgstr "Operasies" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Gedeeltelike Tekste" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Volle Tekste" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Relasie uitsig" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy msgid "Relational display column" msgstr "Relasie uitsig" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy msgid "Hide browser transformation" msgstr "Wys PHP informasie" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Vermoor" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "in navraag" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2832,8 +2828,8 @@ msgstr "" msgid "With selected:" msgstr "Met gekose:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2844,48 +2840,48 @@ msgstr "Met gekose:" msgid "Check All" msgstr "Kies Alles" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Drukker mooi (print view)" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -2962,38 +2958,38 @@ msgstr "Geen indeks gedefinieer!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indekse" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Uniek" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Kommentaar" @@ -3034,7 +3030,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktuur" @@ -3182,16 +3178,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Geen tabelle" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3442,7 +3438,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3544,14 +3540,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3793,7 +3789,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3854,7 +3850,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4335,8 +4331,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4892,9 +4888,8 @@ msgstr "Bladsy nommer:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5649,8 +5644,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5854,8 +5849,8 @@ msgstr "Analiseer tabel" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5873,8 +5868,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5976,8 +5971,8 @@ msgstr "Stellings" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5997,8 +5992,8 @@ msgstr "Bediener weergawe" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6192,8 +6187,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" @@ -6609,7 +6604,7 @@ msgstr "databasisse" msgid "Table(s):" msgstr "Tabel" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6662,8 +6657,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7172,8 +7167,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7190,7 +7185,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." @@ -7312,11 +7307,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7371,7 +7366,7 @@ msgstr "Vervang tabel data met leer (file)" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7710,17 +7705,17 @@ msgid "Drop the database (DROP)" msgstr "Geen databasisse" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Slegs struktuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktuur en data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Slegs Data" @@ -7891,8 +7886,8 @@ msgstr "Welkom by %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8159,7 +8154,7 @@ msgstr "Kolom name" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8167,7 +8162,7 @@ msgstr "Gasheer (host)" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8185,7 +8180,7 @@ msgstr "PHP Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9282,7 +9277,7 @@ msgstr "Kenmerke" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9452,7 +9447,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "PHP Version" @@ -9908,8 +9903,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9920,52 +9915,265 @@ msgstr "" msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Records" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Rekords" +msgstr[1] "Rekords" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in gebruik" +msgstr[1] "in gebruik" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Ry Statistiek" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Kies Alles" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "Navraag dmv Voorbeeld" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Voeg 'n nuwe veld by" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Hernoem tabel na" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Kies Tabelle" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Voeg 'n nuwe gebruiker by" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL-stelling" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sa" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Voortgebring deur" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Voeg By/Verwyder Veld Kolomme" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL resultaat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Voortgebring deur" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Slegs Data" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "Sa" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy msgid "Total Time" msgstr "totaal" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Boekmerk hierdie SQL-stelling" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiket" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -9986,10 +10194,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10133,7 +10337,7 @@ msgstr "" msgid "Sort" msgstr "Sorteer" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10298,7 +10502,7 @@ msgstr "Effektief" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10462,7 +10666,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" @@ -10518,7 +10722,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10592,46 +10796,46 @@ msgstr "Skep" msgid "Active options" msgstr "Aksie" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabel %s is verwyder" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Gebruik" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Skep 'n nuwe indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Gebruiker naam" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10661,7 +10865,7 @@ msgstr "Algemene verwantskap funksies" msgid "Relation deleted" msgstr "Relasie uitsig" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11080,204 +11284,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Voeg 'n nuwe veld by" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Hernoem tabel na" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Kies Tabelle" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Voeg 'n nuwe gebruiker by" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL-stelling" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Ry Statistiek" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Kies Alles" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "Navraag dmv Voorbeeld" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Records" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Rekords" -msgstr[1] "Rekords" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "in gebruik" -msgstr[1] "in gebruik" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sa" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Voortgebring deur" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Voeg By/Verwyder Veld Kolomme" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12169,8 +12175,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12213,47 +12219,37 @@ msgstr "" msgid "Wrong data" msgstr "Geen databasisse" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Boekmerk hierdie SQL-stelling" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiket" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12487,146 +12483,146 @@ msgstr "Kies 'n Veld om te vertoon" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Geen databasisse" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Bediener weergawe" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Bediener weergawe" @@ -12998,8 +12994,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13126,8 +13122,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ar.po b/po/ar.po index 26649c3df6..c56bb6798b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-03-20 22:10+0200\n" "Last-Translator: mohamed amin boubaker \n" "Language-Team: Arabic \n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 1.5-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "إبحث" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "إبحث" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "إنطلق" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "اسم المفتاح" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "الوصف" @@ -109,7 +109,7 @@ msgstr "" "الملف %s غير متوفر على هذا النظام، الرجاء مراجعة www.phpmyadmin.net للمزيد " "من المعلومات." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "تم إنشاء قاعدة البيانات %1$s." @@ -139,7 +139,7 @@ msgstr "تعليقات الجدول" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "عمود" @@ -162,7 +162,7 @@ msgstr "عمود" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "نوع" @@ -179,7 +179,7 @@ msgstr "نوع" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "خالي" @@ -194,7 +194,7 @@ msgstr "خالي" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "إفتراضي" @@ -236,9 +236,9 @@ msgstr "تعليقات" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "لا" @@ -263,9 +263,9 @@ msgstr "لا" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "نعم" @@ -306,8 +306,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: db_printview.php:47 db_tracking.php:79 db_tracking.php:198 #: libraries/Menu.class.php:190 libraries/config/messages.inc.php:510 @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "الجدول" @@ -403,7 +403,7 @@ msgstr "الجداول المتعقبة" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "قاعدة البيانات" @@ -411,17 +411,17 @@ msgstr "قاعدة البيانات" msgid "Last version" msgstr "آخر إصدار" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "أنشئ" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "محدث" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "الحالة" @@ -434,7 +434,7 @@ msgstr "الحالة" msgid "Action" msgstr "العملية" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "عرض" @@ -450,11 +450,11 @@ msgstr "حذف بيانات التتبع لهذا الجدول" msgid "Drop" msgstr "سقّط" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "نشط" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "غير نشط" @@ -462,11 +462,11 @@ msgstr "غير نشط" msgid "Versions" msgstr "الإصدارات" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "تقرير التتبع" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "لقطة للبناء الهيكلي" @@ -622,8 +622,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "من المحتمل أنك قد حاولت رفع ملف كبير الحجم. الرجاء مراجعة %sdocumentation%s " "لإيجاد حلّ بديل لتغيير هذا الحد." @@ -665,7 +665,7 @@ msgstr "لاتستطيع تغيير ترميز الملفات بدون مكتب msgid "Could not load import plugins, please check your installation!" msgstr "لم أتمكن من تحميل قوابس الاستيراد، الرجاء فحص تثبيتك!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" @@ -687,7 +687,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -883,8 +883,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: index.php:521 #, php-format @@ -900,7 +900,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "أمر \"حذف قاعدة البيانات\" معطل." @@ -909,7 +909,7 @@ msgstr "أمر \"حذف قاعدة البيانات\" معطل." msgid "Do you really want to execute \"%s\"?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "أنت على وشك إزالة كامل قاعدة البيانات !" @@ -996,8 +996,8 @@ msgstr "إعادة تحميل الإمتيازات" msgid "Removing Selected Users" msgstr "حذف المستخدمين المحددين" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "أغلاق" @@ -1120,13 +1120,13 @@ msgstr "بايت" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "كيلوبايت" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "ميجابايت" @@ -1165,7 +1165,7 @@ msgid "Traffic" msgstr "بيانات سير" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "الإعدادات" @@ -1185,13 +1185,14 @@ msgstr "أضف تخطيط إلى المشبكة" msgid "Please add at least one variable to the series" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "لا شيء" @@ -1286,7 +1287,7 @@ msgstr "تغيير الإعدادات" msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "عنوان الرسم البياني" @@ -1367,7 +1368,7 @@ msgstr "إشرح الخرج" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "وقت" @@ -1458,7 +1459,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "استيراد" @@ -1515,7 +1516,7 @@ msgid "Cancel" msgstr "ألغاء" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "تحميل" @@ -1663,7 +1664,7 @@ msgstr "إخفاء صندوق الإستعلام" msgid "Show query box" msgstr "إظهار صندوق الإستعلام" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1676,7 +1677,7 @@ msgstr "تعديل" msgid "No rows selected" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1759,7 +1760,7 @@ msgstr "محتوى نقطة البيانات" msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "نسخ" @@ -1775,7 +1776,7 @@ msgstr "منحنى" msgid "Polygon" msgstr "مضلع" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "هندسة" @@ -2262,31 +2263,31 @@ msgstr "لكل ساعة" msgid "per day" msgstr "يومياً" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "ملف الإعدادت (%s) غير قابل للقراءة." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينبغى أن يكون قابل للكتابة!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "حجم الخط" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "تصاعديا" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2448,14 +2449,14 @@ msgstr "استعراض" msgid "Delete the matches for the %s table?" msgstr "حذف التشابهات لجدول %s ؟" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "حذف" @@ -2546,16 +2547,11 @@ msgstr "أفقي (رؤوس ملتفة)" msgid "vertical" msgstr "عمودي" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "رؤوس كلّ %s أسطر" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "رتّب حسب الْمفتاح" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2582,91 +2578,91 @@ msgstr "رتّب حسب الْمفتاح" msgid "Options" msgstr "خيارات" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "نصوص جزئيّة" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "نصوص كاملة" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "مفتاح العلائقيّة" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "عمود عرض علائقي" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "أظهر المحتويات الثنائية" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "عرض محتويات BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "عرض البيانات الثنائية بالنظام الست عشري" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "أخفي محتويات المستعرض" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "نصّ معروف جيّداً" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "ثنائي معروف جيّداً" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "لقد تمّ حذف الصّف" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "حذف" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأسئلة المتكررة 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "في الإستعلام" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ " -"%sdocumentation%s." +"لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ %" +"sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "أظهر الصفوف" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "المجموع" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2675,8 +2671,8 @@ msgstr "استغرق الاستعلام %01.4f ثانية" msgid "With selected:" msgstr "مع المحدد:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2687,45 +2683,45 @@ msgstr "مع المحدد:" msgid "Check All" msgstr "تحديد الكل" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "تصدير" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "إنشاء عرض" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "عمليّات على نتائج الإستعلام" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "عرض للطّباعة (مع النّصوص الكاملة)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "عرض الرّسم البياني" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "إبداء بيانات نظام المعلومات الجغرافية للعيان" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -2802,38 +2798,38 @@ msgstr "لم يتم تعريف الفهرس!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "فهارس" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "فريد" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "محزم" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "تعليق" @@ -2873,7 +2869,7 @@ msgstr "عرض" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "بناء" @@ -3030,15 +3026,15 @@ msgstr[5] "%1$d صفوف أضيفت" msgid "Error while creating PDF:" msgstr "خطأ عند إنشاء ملف PDF :" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "لايستطيع حفظ الجدول الأخير" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "الجداول الأخيرة" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "لا يوجد جداول أخيرة" @@ -3277,7 +3273,7 @@ msgid "Maximum rows to plot" msgstr "أقصى عدد الصفوف للرسم" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" @@ -3378,14 +3374,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3621,7 +3617,7 @@ msgstr "" msgid "Max: %s%s" msgstr "كبير: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3682,7 +3678,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "مضمن" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "جانبي" @@ -4150,8 +4146,8 @@ msgstr "تعديل أعمدة CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4689,9 +4685,8 @@ msgstr "عناوين الصفحة" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5449,8 +5444,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5645,8 +5640,8 @@ msgstr "الجدول المستخدم مؤخرا" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5663,8 +5658,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5761,8 +5756,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5781,8 +5776,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5968,8 +5963,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "اسم المستخدم" @@ -6367,7 +6362,7 @@ msgstr "قاعدة/قواعد البيانات:" msgid "Table(s):" msgstr "الجدول/الجداول:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "الأسطر:" @@ -6416,8 +6411,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6925,8 +6920,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6942,7 +6937,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." @@ -7066,11 +7061,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7127,7 +7122,7 @@ msgstr "إضافة حقل جديد" msgid "Add prefix" msgstr "إضافة حقل جديد" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7468,17 +7463,17 @@ msgid "Drop the database (DROP)" msgstr "حذف قاعدة البيانات" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "البنية فقط" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "البنية والبيانات" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "بيانات فقط" @@ -7643,8 +7638,8 @@ msgstr "أهلا بك في %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7922,7 +7917,7 @@ msgstr "ضع أسماء الحقول في السطر الأول" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -7930,7 +7925,7 @@ msgstr "المزود" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -7948,7 +7943,7 @@ msgstr "PHP إصدارة" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8368,10 +8363,10 @@ msgid "" "option is the string to append and/or prepend when truncation occurs " "(Default: \"…\")." msgstr "" -"يظهر فقط جزءً من النص. الخيار الأول يحدد مكان بدء ظهور النص )صفر بشكل " -"افتراضي(. الخيار الثاني هو تعديل كم النص المسترجع. إن كان فارغا، يسترجع كل " -"النص الباقي. الخيار الثالث يعرف أي من الأحرف سوف تضاف إلى المخرجات عند " -"استرجاع جزء من النص )… بشكل افتراضي(." +"يظهر فقط جزءً من النص. الخيار الأول يحدد مكان بدء ظهور النص )صفر بشكل افتراضي" +"(. الخيار الثاني هو تعديل كم النص المسترجع. إن كان فارغا، يسترجع كل النص " +"الباقي. الخيار الثالث يعرف أي من الأحرف سوف تضاف إلى المخرجات عند استرجاع " +"جزء من النص )… بشكل افتراضي(." #: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33 #, fuzzy @@ -9139,7 +9134,7 @@ msgstr "الخواص" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "إضافي" @@ -9313,7 +9308,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "نسخة" @@ -9775,8 +9770,8 @@ msgstr "معلومات المستخدم" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -9791,62 +9786,292 @@ msgstr "المستخدم المحدد غير موجود في جدول الصلا msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "الثانية" +msgstr[1] "الثانية" +msgstr[2] "الثانية" +msgstr[3] "الثانية" +msgstr[4] "الثانية" +msgstr[5] "الثانية" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "الدقيقة" +msgstr[1] "الدقيقة" +msgstr[2] "الدقيقة" +msgstr[3] "الدقيقة" +msgstr[4] "الدقيقة" +msgstr[5] "الدقيقة" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "إحصائيات" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "اختر الجداول" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "نوع الاستعلام" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "إضافة حقل جديد" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "حذف الرسم البياني" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "اختر الجداول" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "اسم الجدول غير صالح" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "أضف مستخدم جديد" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "ابدأ" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "تفعيل التوضيح (highlighting)" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "حدث" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "إضافه/حذف عمود حقل" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "إستعادة القيمة الإفتراضية" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "ناتج استعلام SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "أنشئ بواسطة" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "ملفات البيانات" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "آخر" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "بدء التشغيل" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "مجموع الوقت:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "وقت" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "أغلاق" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "وقت" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "اجعل علامة مرجعية SQL-استعلام" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "علامة" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9867,10 +10092,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10007,7 +10228,7 @@ msgstr "تحقق من الجداول التي تحمل عبء زائد" msgid "Sort" msgstr "ترتيب" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "لا شيء" @@ -10174,7 +10395,7 @@ msgstr "فعال" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "خطأ في الإستعلام" @@ -10340,7 +10561,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "تمت التعديلات" @@ -10398,7 +10619,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "الصينية التقليدية" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10474,47 +10695,47 @@ msgstr "تكوين" msgid "Active options" msgstr "خيارات الجدول" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "صفحات" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "استورد الملفات" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "تصميم فهرسه جديده" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "اسم المستخدم" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10542,7 +10763,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10967,221 +11188,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "إضافة حقل جديد" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "حذف الرسم البياني" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "اختر الجداول" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "اسم الجدول غير صالح" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "أضف مستخدم جديد" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "إحصائيات" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "اختر الجداول" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "نوع الاستعلام" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "الثانية" -msgstr[1] "الثانية" -msgstr[2] "الثانية" -msgstr[3] "الثانية" -msgstr[4] "الثانية" -msgstr[5] "الثانية" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "الدقيقة" -msgstr[1] "الدقيقة" -msgstr[2] "الدقيقة" -msgstr[3] "الدقيقة" -msgstr[4] "الدقيقة" -msgstr[5] "الدقيقة" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "ابدأ" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "تفعيل التوضيح (highlighting)" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "حدث" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "إضافه/حذف عمود حقل" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "إستعادة القيمة الإفتراضية" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12079,8 +12085,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12123,49 +12129,39 @@ msgstr "" msgid "Wrong data" msgstr "لايوجد بيانات" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "تم إنشاء العلامة المرجعية %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "اجعل علامة مرجعية SQL-استعلام" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "علامة" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12408,151 +12404,151 @@ msgstr "اختر الحقل لإظهاره" msgid "No column selected." msgstr "لايوجد صفوف مختارة" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "تتبع التقرير للجدول %s" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "تم إنشاء الإصدار %s , التتبع نشط لـ %s.%s" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "التتبع نشط." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "التتبع نشط." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "تم تنفيذ جمل SQL." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "يسمح بإضافة واستبدال البيانات." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "لايوجد بيانات" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "تاريخ" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "تنفيذ SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "تصدير كـ %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "عرض الإصدارات" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "تعطيل التتبع لـ %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "تعطيل الآن" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "تنشيط التتبع لـ %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "تنشيط الآن" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "انشئ إصدار %s لـ %s.s%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "تتبع تقارير تعريف البيانات:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "تتبع تقارير التلاعب بالبيانات:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "إنشاء إصدار" @@ -12939,8 +12935,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13073,8 +13069,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13745,6 +13741,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Headers every %s rows" +#~ msgstr "رؤوس كلّ %s أسطر" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14245,8 +14244,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " -#~ "%sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" +#~ "sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index ccba837799..7c688a1125 100644 --- a/po/az.po +++ b/po/az.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:14+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Azerbaijani \n" -"Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: az\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "Axtarış" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "Axtarış" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Davam" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Açar söz" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Haqqında" @@ -106,7 +106,7 @@ msgstr "" "%s faylı sistəmdə yoxdur. Bütün lazımi informasiyanı www.phpmyadmin.net " "saytından tapa bilərsiniz." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s verilənlər bazası yaradıldı." @@ -136,7 +136,7 @@ msgstr "Cədvəl haqqında izahat" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Sütun" @@ -159,7 +159,7 @@ msgstr "Sütun" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tip" @@ -176,7 +176,7 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -191,7 +191,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Susmaya görə" @@ -233,9 +233,9 @@ msgstr "Şərhlər" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Xeyr" @@ -260,9 +260,9 @@ msgstr "Xeyr" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Bəli" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Cedvel" @@ -403,7 +403,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Me'lumat Bazası" @@ -411,18 +411,18 @@ msgstr "Me'lumat Bazası" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 #, fuzzy msgid "Created" msgstr "Qur" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -435,7 +435,7 @@ msgstr "Status" msgid "Action" msgstr "Fealiyyetler" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Göster" @@ -451,11 +451,11 @@ msgstr "" msgid "Drop" msgstr "Leğv et" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -464,11 +464,11 @@ msgstr "" msgid "Versions" msgstr "Emeliyyatlar" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Sadece quruluş" @@ -631,8 +631,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -672,7 +672,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -694,7 +694,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -904,7 +904,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." @@ -914,7 +914,7 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." msgid "Do you really want to execute \"%s\"?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" @@ -1015,8 +1015,8 @@ msgstr "Qlobal selahiyyetler" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1150,13 +1150,13 @@ msgstr "Bayt" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1197,7 +1197,7 @@ msgid "Traffic" msgstr "Neqliyyat" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1220,13 +1220,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Heç biri" @@ -1326,7 +1327,7 @@ msgstr "Ümumi elaqe variantları" msgid "Current settings" msgstr "Ümumi elaqe variantları" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1414,7 +1415,7 @@ msgstr "SQL-i İzah Et" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Müddet" @@ -1523,7 +1524,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1587,7 +1588,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Yerli" @@ -1766,7 +1767,7 @@ msgstr "SQL sorğusu" msgid "Show query box" msgstr "SQL sorğusu" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1779,7 +1780,7 @@ msgstr "Deyişdir" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1871,7 +1872,7 @@ msgstr "İçindekiler Cedveli" msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1889,7 +1890,7 @@ msgstr "Setir leğvedicisi (Lines terminated by)" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2432,31 +2433,31 @@ msgstr "saatda" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Artan sırada" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2615,14 +2616,14 @@ msgstr "İçindekiler" msgid "Delete the matches for the %s table?" msgstr "Sxemi çıxarılan cedvel" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Sil" @@ -2731,16 +2732,11 @@ msgstr "üfüqi (tekrarlanan başlıqlar)" msgid "vertical" msgstr "şaquli" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2768,98 +2764,98 @@ msgstr "" msgid "Options" msgstr "Emeliyyatlar" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Qismi Metnler" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tam Metnler (Full Text)" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Söndür" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "cemi" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2868,8 +2864,8 @@ msgstr "sorğu %01.4f saniyede icra edildi" msgid "With selected:" msgstr "Seçilenleri:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2880,48 +2876,48 @@ msgstr "Seçilenleri:" msgid "Check All" msgstr "Hamısını Seç" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Server versiyası" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Çap görüntüsü" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link tapılmadı" @@ -2998,39 +2994,39 @@ msgstr "İndeks te'yin edilmedi!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksler" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 #, fuzzy msgid "Collation" msgstr "Quruluş" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Qısa İzahatlar" @@ -3071,7 +3067,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Quruluş" @@ -3223,16 +3219,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "Allows reading data." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Cedvel yoxdur" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3483,7 +3479,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3585,14 +3581,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3835,7 +3831,7 @@ msgstr "" msgid "Max: %s%s" msgstr "En çox: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3898,7 +3894,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motorlar" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4384,8 +4380,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4959,9 +4955,8 @@ msgstr "Sehife Nömresi:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5730,8 +5725,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5936,8 +5931,8 @@ msgstr "Cedveli analiz et" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5955,8 +5950,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6058,8 +6053,8 @@ msgstr "Variantlar" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6080,8 +6075,8 @@ msgstr "Avtomatik qurtarma rejimi" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6276,8 +6271,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" @@ -6693,7 +6688,7 @@ msgstr "Me'lumat Bazaları" msgid "Table(s):" msgstr "Cedveller" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6749,8 +6744,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7266,8 +7261,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7285,7 +7280,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." @@ -7408,11 +7403,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7469,7 +7464,7 @@ msgstr "Yeni sahe elave et" msgid "Add prefix" msgstr "Yeni sahe elave et" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7814,17 +7809,17 @@ msgid "Drop the database (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Sadece quruluş" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Quruluş ve me'lumat" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Sadece me'lumat" @@ -7999,8 +7994,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8277,7 +8272,7 @@ msgstr "Sahe adlarını birinci setre yerleşdir" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8285,7 +8280,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8303,7 +8298,7 @@ msgstr "PHP Versiyası" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9465,7 +9460,7 @@ msgstr "Xüsusiyyetler" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Elave Xüs." @@ -9641,7 +9636,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "PHP Versiyası" @@ -10109,8 +10104,8 @@ msgstr "User overview" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " "cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " @@ -10125,56 +10120,270 @@ msgstr "" msgid "You have added a new user." msgstr "Yeni istifadeçi elave etdiniz." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "saniyede" +msgstr[1] "saniyede" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "istifadede" +msgstr[1] "istifadede" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Sıra Statistikası" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Hamısını Seç" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Sorğu tipi" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Yeni sahe elave et" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Cedveli yeniden adlandır" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Select Tables" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Yeni İstifadeçi elave Et" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL sorğusu" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Şen" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Qurucu" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Sahe Sütunlarını Elave Et/Sil" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL result" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Qurucu" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Sadece me'lumat" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Cemi" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Müddet" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Müddet" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bu SQL sorğusunu bookmark-la" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiket" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10195,10 +10404,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10330,7 +10535,7 @@ msgstr "" msgid "Sort" msgstr "Sırala" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10499,7 +10704,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10667,7 +10872,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10725,7 +10930,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Enenevi Çin Dili" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10799,48 +11004,48 @@ msgstr "Qur" msgid "Active options" msgstr "Cedvel başlığı" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "%s cedveli leğv edildi" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Miqdar" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Faylları import et" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yeni indeks qur" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İstifadeçi adı" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10870,7 +11075,7 @@ msgstr "Ümumi elaqe variantları" msgid "Relation deleted" msgstr "Relation view" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11294,205 +11499,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Yeni sahe elave et" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Cedveli yeniden adlandır" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Select Tables" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Yeni İstifadeçi elave Et" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL sorğusu" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Sıra Statistikası" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Hamısını Seç" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Sorğu tipi" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "saniyede" -msgstr[1] "saniyede" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "istifadede" -msgstr[1] "istifadede" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Şen" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Qurucu" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Sahe Sütunlarını Elave Et/Sil" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12388,8 +12394,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12432,47 +12438,37 @@ msgstr "" msgid "Wrong data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bu SQL sorğusunu bookmark-la" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiket" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12714,148 +12710,148 @@ msgstr "Gösterilecek Saheni Seç" msgid "No column selected." msgstr "Heç bir baza seçilmemişdir." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Me'lumat" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server versiyası" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Server versiyası" @@ -13227,8 +13223,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13356,8 +13352,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/be.po b/po/be.po index 6b755bceff..d042dbd5bc 100644 --- a/po/be.po +++ b/po/be.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian \n" -"Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: be\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Пошук" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Пошук" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Панеслася" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Імя ключа" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Апісаньне" @@ -108,7 +108,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." @@ -138,7 +138,7 @@ msgstr "Камэнтар да табліцы" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -163,7 +163,7 @@ msgstr "Назвы калёнак" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тып" @@ -180,7 +180,7 @@ msgstr "Тып" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Нуль" @@ -195,7 +195,7 @@ msgstr "Нуль" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Па змоўчаньні" @@ -237,9 +237,9 @@ msgstr "Камэнтары" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Не" @@ -264,9 +264,9 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Так" @@ -323,7 +323,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Табліца" @@ -410,7 +410,7 @@ msgstr "Праверыць табліцу" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "База дадзеных" @@ -419,18 +419,18 @@ msgstr "База дадзеных" msgid "Last version" msgstr "Стварыць сувязь" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 #, fuzzy msgid "Created" msgstr "Стварыць" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Стан" @@ -443,7 +443,7 @@ msgstr "Стан" msgid "Action" msgstr "Дзеяньне" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Паказаць" @@ -459,11 +459,11 @@ msgstr "" msgid "Drop" msgstr "Выдаліць" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -472,11 +472,11 @@ msgstr "" msgid "Versions" msgstr "Пэрсыдзкая" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" @@ -641,11 +641,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " @@ -671,8 +671,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " -"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" +"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:427 @@ -695,7 +695,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" @@ -722,7 +722,7 @@ msgstr "" "звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі " "вы не павялічыце ліміты выкананьня php-скрыптоў." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -947,7 +947,7 @@ msgstr "" "На сэрвэры запушчаны Suhosin. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s " "для атрыманьня апісаньня магчымых праблемаў." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." @@ -957,7 +957,7 @@ msgstr "Каманды \"DROP DATABASE\" адключаныя." msgid "Do you really want to execute \"%s\"?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -1060,8 +1060,8 @@ msgstr "Перазагрузіць прывілеі" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1204,13 +1204,13 @@ msgstr "Б" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КiБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МіБ" @@ -1251,7 +1251,7 @@ msgid "Traffic" msgstr "Трафік" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1277,13 +1277,14 @@ msgstr "Зьвяць зь сеткай" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Няма" @@ -1383,7 +1384,7 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1475,7 +1476,7 @@ msgstr "Тлумачыць SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Час" @@ -1585,7 +1586,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" @@ -1653,7 +1654,7 @@ msgid "Cancel" msgstr "Скасаваць" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Лякальны" @@ -1837,7 +1838,7 @@ msgstr "SQL-запыт" msgid "Show query box" msgstr "SQL-запыт" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1850,7 +1851,7 @@ msgstr "Рэдагаваць" msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1942,7 +1943,7 @@ msgstr "Памер указальніка на дадзеныя" msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Скапіяваць" @@ -1960,7 +1961,7 @@ msgstr "Радкі падзеленыя" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2509,31 +2510,31 @@ msgstr "у гадзіну" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Памер шрыфта" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "прамы" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2696,14 +2697,14 @@ msgstr "Прагляд" msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Выдаліць" @@ -2813,17 +2814,11 @@ msgstr "гарызантальна (павернутыя загалоўкі)" msgid "vertical" msgstr "вэртыкальна" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Выканаць запыт з закладак" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Сартаваць па ключы" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2850,99 +2845,99 @@ msgstr "Сартаваць па ключы" msgid "Options" msgstr "Налады" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Частковыя тэксты" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Поўныя тэксты" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Ключ сувязі" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Адлюстраванае поле сувязі" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Спыніць" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Значэньне можа быць прыблізным. Гл. [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "па запыту" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " -"%sдакумэнтацыі%s." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" +"sдакумэнтацыі%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "усяго" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2951,8 +2946,8 @@ msgstr "Запыт выконваўся %01.4f сэк" msgid "With selected:" msgstr "З адзначанымі:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2963,48 +2958,48 @@ msgstr "З адзначанымі:" msgid "Check All" msgstr "Адзначыць усё" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспарт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Вэрсія для друку" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -3087,38 +3082,38 @@ msgstr "Індэкс ня вызначаны!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Індэксы" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Супастаўленьне" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Камэнтар" @@ -3160,7 +3155,7 @@ msgstr "Выгляд" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3312,18 +3307,18 @@ msgstr[1] "Устаўлена радкоў: %1$d." msgid "Error while creating PDF:" msgstr "Дазваляе чытаць дадзеныя." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Няма табліц" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Праверыць табліцу" @@ -3578,7 +3573,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" @@ -3681,14 +3676,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3933,7 +3928,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3996,7 +3991,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Машыны" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Прафіляваньне" @@ -4488,8 +4483,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5067,9 +5062,8 @@ msgstr "Старонка:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5865,8 +5859,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -6073,8 +6067,8 @@ msgstr "Аналізаваць табліцу" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -6092,8 +6086,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6197,8 +6191,8 @@ msgstr "Выразы" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6219,8 +6213,8 @@ msgstr "Рэжым аўтаматычнага ўзнаўленьня" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6418,8 +6412,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" @@ -6847,7 +6841,7 @@ msgstr "Базы дадзеных" msgid "Table(s):" msgstr "Табліц" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6903,12 +6897,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -7490,8 +7484,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7509,7 +7503,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." @@ -7636,11 +7630,11 @@ msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -7697,7 +7691,7 @@ msgstr "Дадаць новае поле" msgid "Add prefix" msgstr "Дадаць новае поле" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8040,17 +8034,17 @@ msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Толькі структуру" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структуру і дадзеныя" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Толькі дадзеныя" @@ -8222,8 +8216,8 @@ msgstr "Запрашаем у %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." @@ -8511,7 +8505,7 @@ msgstr "Пазначыць назвы палёў у першым радку" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8519,7 +8513,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8537,7 +8531,7 @@ msgstr "Вэрсія PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9767,7 +9761,7 @@ msgstr "Атрыбуты" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Дадаткова" @@ -9942,7 +9936,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Пэрсыдзкая" @@ -10419,8 +10413,8 @@ msgstr "Карыстальнікі" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " @@ -10435,57 +10429,274 @@ msgstr "Вылучаны карыстальнік ня знойдзены ў т msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у сэкунду" +msgstr[1] "у сэкунду" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "выкарыстоўваецца" +msgstr[1] "выкарыстоўваецца" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Статыстыка радку" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Выбраць усё" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Тып запыту" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Дадаць новае поле" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Перайменаваць базу дадзеных у" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Выберыце табліцу(ы)" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Некарэктнае імя табліцы" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Дадаць новага карыстальніка" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL-запыт" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Суб" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Абнавіць" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Дадаць/выдаліць калёнку крытэру" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-вынік" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Створаны" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Памер павелічэньня файлаў з дадзенымі" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Стан" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Агулам" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Час" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Час" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Дадаць гэты SQL-запыт у закладкі" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Метка" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10507,10 +10718,6 @@ msgstr "Каляндар" msgid "Bookmark this SQL query:" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замяніць існую закладку з такім жа імем" @@ -10657,7 +10864,7 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза msgid "Sort" msgstr "Парадак" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10829,7 +11036,7 @@ msgstr "Эфэктыўнасьць" msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -11003,7 +11210,7 @@ msgstr "Памылка ў ZIP-архіве:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" @@ -11062,7 +11269,7 @@ msgid "Toggle relation lines" msgstr "" "Каб выбраць сувязь, націсьніце на кропцы злучэньня, як паказана на выяве:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему" @@ -11137,52 +11344,52 @@ msgstr "Стварыць" msgid "Active options" msgstr "Опцыі табліцы" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Табліца %1$s створаная." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "старонак" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Імпартаваць файлы" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Маштаб" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Стварыць новы індэкс" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Імя карыстальніка" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Маштаб" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "рэкамэндаваны" @@ -11212,7 +11419,7 @@ msgstr "Унутраная сувязь дададзеная" msgid "Relation deleted" msgstr "Сувязь выдаленая" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Памылка захаваньня каардынатаў." @@ -11641,208 +11848,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Дадаць новае поле" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Перайменаваць базу дадзеных у" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Выберыце табліцу(ы)" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Некарэктнае імя табліцы" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Дадаць новага карыстальніка" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL-запыт" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Статыстыка радку" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Выбраць усё" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Тып запыту" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "у сэкунду" -msgstr[1] "у сэкунду" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "выкарыстоўваецца" -msgstr[1] "выкарыстоўваецца" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Суб" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Абнавіць" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Дадаць/выдаліць калёнку крытэру" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12877,8 +12882,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12921,49 +12926,39 @@ msgstr "" msgid "Wrong data" msgstr "Базы дадзеных адсутнічаюць" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Закладка %s створаная" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Дадаць гэты SQL-запыт у закладкі" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Метка" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13210,148 +13205,148 @@ msgstr "Выберыце поле для адлюстраваньня" msgid "No column selected." msgstr "Ніводны радок ня выбраны" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базы дадзеных адсутнічаюць" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Дадзеныя" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Тып экспарту" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Стварыць сувязь" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Стварыць сувязь" @@ -13732,8 +13727,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13866,8 +13861,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14589,6 +14584,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Выканаць запыт з закладак" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/be@latin.po b/po/be@latin.po index 331e0a15a5..1fca8ee199 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) \n" -"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: be@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Pošuk" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Pošuk" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Paniesłasia" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Imia kluča" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Apisańnie" @@ -108,7 +108,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." @@ -138,7 +138,7 @@ msgstr "Kamentar da tablicy" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -163,7 +163,7 @@ msgstr "Nazvy kalonak" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -180,7 +180,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nul" @@ -195,7 +195,7 @@ msgstr "Nul" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Pa zmoŭčańni" @@ -237,9 +237,9 @@ msgstr "Kamentary" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nie" @@ -264,9 +264,9 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Tak" @@ -323,7 +323,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tablica" @@ -410,7 +410,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Baza dadzienych" @@ -418,17 +418,17 @@ msgstr "Baza dadzienych" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stan" @@ -441,7 +441,7 @@ msgstr "Stan" msgid "Action" msgstr "Dziejańnie" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Pakazać" @@ -457,11 +457,11 @@ msgstr "" msgid "Drop" msgstr "Vydalić" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -469,11 +469,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -635,11 +635,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -665,8 +665,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " -"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" +"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:427 @@ -689,7 +689,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" @@ -716,7 +716,7 @@ msgstr "" "Heta zvyčajna značyć, što phpMyAdmin nia zmoža skončyć hetaje impartavańnia, " "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -944,7 +944,7 @@ msgstr "" "Na servery zapuščany Suhosin. Kali łaska, źviarniciesia da %sdakumentacyi%s " "dla atrymańnia apisańnia mahčymych prablemaŭ." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." @@ -954,7 +954,7 @@ msgstr "Kamandy \"DROP DATABASE\" adklučanyja." msgid "Do you really want to execute \"%s\"?" msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -1057,8 +1057,8 @@ msgstr "Pierazahruzić pryvilei" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1201,13 +1201,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1249,7 +1249,7 @@ msgid "Traffic" msgstr "Trafik" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1275,13 +1275,14 @@ msgstr "Źviać ź sietkaj" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nijakaja" @@ -1381,7 +1382,7 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "Current settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1475,7 +1476,7 @@ msgstr "Tłumačyć SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Čas" @@ -1588,7 +1589,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" @@ -1657,7 +1658,7 @@ msgid "Cancel" msgstr "Skasavać" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1845,7 +1846,7 @@ msgstr "pa zapytu" msgid "Show query box" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1858,7 +1859,7 @@ msgstr "Redagavać" msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1952,7 +1953,7 @@ msgstr "Pamier ukazalnika na dadzienyja" msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Skapijavać" @@ -1970,7 +1971,7 @@ msgstr "Radki padzielenyja" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2519,31 +2520,31 @@ msgstr "u hadzinu" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Pamier šryfta" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "pramy" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2708,14 +2709,14 @@ msgstr "Prahlad" msgid "Delete the matches for the %s table?" msgstr "Damp dadzienych tablicy" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Vydalić" @@ -2824,17 +2825,11 @@ msgstr "haryzantalna (paviernutyja zahałoŭki)" msgid "vertical" msgstr "vertykalna" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Vykanać zapyt z zakładak" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sartavać pa klučy" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2861,99 +2856,99 @@ msgstr "Sartavać pa klučy" msgid "Options" msgstr "Nałady" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Častkovyja teksty" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Poŭnyja teksty" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Kluč suviazi" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Adlustravanaje pole suviazi" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Spynić" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Značeńnie moža być prybliznym. Hł. [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "pa zapytu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " -"%sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" +"sdakumentacyi%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "usiaho" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2962,8 +2957,8 @@ msgstr "Zapyt vykonvaŭsia %01.4f sek" msgid "With selected:" msgstr "Z adznačanymi:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2974,49 +2969,49 @@ msgstr "Z adznačanymi:" msgid "Check All" msgstr "Adznačyć usio" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspart" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Versija dla druku" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" @@ -3065,8 +3060,8 @@ msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł " -"[doc@faq1-11]1.11 u FAQ[/doc]" +"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł [doc@faq1-11]" +"1.11 u FAQ[/doc]" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -3099,38 +3094,38 @@ msgstr "Indeks nia vyznačany!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kolkaść elementaŭ" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Supastaŭleńnie" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kamentar" @@ -3172,7 +3167,7 @@ msgstr "Vyhlad" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -3324,19 +3319,19 @@ msgstr[1] "Ustaŭlena radkoŭ: %1$d." msgid "Error while creating PDF:" msgstr "Dazvalaje čytać dadzienyja." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Select Tables" msgid "Recent tables" msgstr "Vybierycie tablicu(y)" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3591,7 +3586,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" @@ -3694,14 +3689,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3947,7 +3942,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksymalny pamier: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -4010,7 +4005,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mašyny" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Prafilavańnie" @@ -4504,8 +4499,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5072,9 +5067,8 @@ msgstr "Staronka:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5857,8 +5851,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -6059,8 +6053,8 @@ msgstr "Analizavać tablicu" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -6077,8 +6071,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6181,8 +6175,8 @@ msgstr "Vyrazy" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6203,8 +6197,8 @@ msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6401,8 +6395,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6834,7 +6828,7 @@ msgstr "Bazy dadzienych" msgid "Table(s):" msgstr "Tablic" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6890,12 +6884,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -7484,8 +7478,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7503,7 +7497,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." @@ -7630,11 +7624,11 @@ msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -7691,7 +7685,7 @@ msgstr "Dadać novaje pole" msgid "Add prefix" msgstr "Dadać novaje pole" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8035,17 +8029,17 @@ msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tolki strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strukturu i dadzienyja" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tolki dadzienyja" @@ -8218,8 +8212,8 @@ msgstr "Zaprašajem u %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -8509,7 +8503,7 @@ msgstr "Paznačyć nazvy paloŭ u pieršym radku" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8517,7 +8511,7 @@ msgstr "Chost" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8535,7 +8529,7 @@ msgstr "Versija PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8886,8 +8880,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " -"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " +"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -9769,7 +9763,7 @@ msgstr "Atrybuty" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dadatkova" @@ -9944,7 +9938,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -10422,8 +10416,8 @@ msgstr "Karystalniki" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " @@ -10438,58 +10432,276 @@ msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "u sekundu" +msgstr[1] "u sekundu" +msgstr[2] "u sekundu" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "vykarystoŭvajecca" +msgstr[1] "vykarystoŭvajecca" +msgstr[2] "vykarystoŭvajecca" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "Statystyka radku" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Vybrać usio" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Typ zapytu" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Dadać novaje pole" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Pierajmienavać bazu dadzienych u" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Vybierycie tablicu(y)" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Niekarektnaje imia tablicy" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "Dadać novaha karystalnika" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Abnavić" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dadać/vydalić kalonku kryteru" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-vynik" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Stvorany" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Pamier pavieličeńnia fajłaŭ z dadzienymi" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Sub" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ahułam" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Čas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Čas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Dadać hety SQL-zapyt u zakładki" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Mietka" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10510,10 +10722,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamianić isnuju zakładku z takim ža imiem" @@ -10606,8 +10814,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " -"%sdakumentacyi%s." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" +"sdakumentacyi%s." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10660,7 +10868,7 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" msgid "Sort" msgstr "Paradak" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10832,7 +11040,7 @@ msgstr "Efektyŭnaść" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -11006,7 +11214,7 @@ msgstr "Pamyłka ŭ ZIP-archivie:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" @@ -11065,7 +11273,7 @@ msgid "Toggle relation lines" msgstr "" "Kab vybrać suviaź, naciśnicie na kropcy złučeńnia, jak pakazana na vyjavie:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu" @@ -11141,51 +11349,51 @@ msgstr "Stvaryć" msgid "Active options" msgstr "Opcyi tablicy" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "staronak" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Impartavać fajły" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Maštab" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Stvaryć novy indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Imia karystalnika" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Maštab" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "rekamendavany" @@ -11215,7 +11423,7 @@ msgstr "Unutranaja suviaź dadadzienaja" msgid "Relation deleted" msgstr "Suviaź vydalenaja" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Pamyłka zachavańnia kaardynataŭ." @@ -11641,209 +11849,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Dadać novaje pole" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Pierajmienavać bazu dadzienych u" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Vybierycie tablicu(y)" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Niekarektnaje imia tablicy" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "Dadać novaha karystalnika" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "Statystyka radku" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Vybrać usio" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Typ zapytu" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "u sekundu" -msgstr[1] "u sekundu" -msgstr[2] "u sekundu" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "vykarystoŭvajecca" -msgstr[1] "vykarystoŭvajecca" -msgstr[2] "vykarystoŭvajecca" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Abnavić" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dadać/vydalić kalonku kryteru" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12872,8 +12877,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12916,49 +12921,39 @@ msgstr "" msgid "Wrong data" msgstr "Bazy dadzienych adsutničajuć" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Zakładka %s stvoranaja" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Dadać hety SQL-zapyt u zakładki" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Mietka" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13204,148 +13199,148 @@ msgstr "Vybierycie pole dla adlustravańnia" msgid "No column selected." msgstr "Nivodny radok nia vybrany" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Bazy dadzienych adsutničajuć" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -13730,8 +13725,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13866,8 +13861,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14593,6 +14588,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Vykanać zapyt z zakładak" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/bg.po b/po/bg.po index 2c7ef23720..f231b2942e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-07 23:46+0200\n" "Last-Translator: Pl P \n" "Language-Team: Bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Търсене" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Търсене" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Изпълнение" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Име на ключ" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Описание" @@ -109,7 +109,7 @@ msgstr "" "Файлът %s не е наличен в системата, посетете www.phpmyadmin.net за повече " "информация." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "БД %1$s беше създадена." @@ -139,7 +139,7 @@ msgstr "Коментари към таблицата" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kолона" @@ -162,7 +162,7 @@ msgstr "Kолона" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тип" @@ -179,7 +179,7 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Празно" @@ -194,7 +194,7 @@ msgstr "Празно" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "По подразбиране" @@ -236,9 +236,9 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Не" @@ -263,9 +263,9 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Да" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Таблица" @@ -399,7 +399,7 @@ msgstr "Следени таблици" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "БД" @@ -407,17 +407,17 @@ msgstr "БД" msgid "Last version" msgstr "Последна версия" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Създаден" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Съвременен" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Състояние" @@ -430,7 +430,7 @@ msgstr "Състояние" msgid "Action" msgstr "Действие" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Показване" @@ -446,11 +446,11 @@ msgstr "Изтриване на проследената информация з msgid "Drop" msgstr "Изтриване" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "активен" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "неактивен" @@ -458,11 +458,11 @@ msgstr "неактивен" msgid "Versions" msgstr "Версии" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Доклад за следенето" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Моментна снимка на структурата" @@ -618,11 +618,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sдокументацията%s за да намерите начин да избегнете това ограничение." @@ -657,8 +657,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "Не бяха получени данни за импорт. Или не е изпратен файл, или файлът е бил " -"по-голям от разрешеното в конфигурацията на PHP. Вижте [doc@faq1-16]ЧЗВ " -"1.16[/doc]." +"по-голям от разрешеното в конфигурацията на PHP. Вижте [doc@faq1-16]ЧЗВ 1.16" +"[/doc]." #: import.php:447 msgid "" @@ -673,7 +673,7 @@ msgstr "" "Не могат да бъдат заредени разширенията за импорт, моля проверете " "инсталацията!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Белязка %s беше създадена" @@ -700,7 +700,7 @@ msgstr "" "обикновено означава, че phpMyAdmin няма да бъде в състояние да завърши този " "импорт, освен ако не бъдат увеличени времевите ограничения в PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -910,7 +910,7 @@ msgstr "" "Сървърът е с кръпка Suhosin. Прочетете %sдокументацията%s за възможни " "проблеми." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." @@ -919,7 +919,7 @@ msgstr "\"DROP DATABASE\" заявката е забранена." msgid "Do you really want to execute \"%s\"?" msgstr "Наистина ли искате да изпълните \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цяла БД!" @@ -1004,8 +1004,8 @@ msgstr "Презареждане на правата" msgid "Removing Selected Users" msgstr "Изтриване на маркираните потребители" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Затваряне" @@ -1132,13 +1132,13 @@ msgstr "Б" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1177,7 +1177,7 @@ msgid "Traffic" msgstr "Трафик" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Настройки" @@ -1197,13 +1197,14 @@ msgstr "Добавяне диаграма към мрежата" msgid "Please add at least one variable to the series" msgstr "Моля добавете поне една променлива към сериите" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Няма" @@ -1303,7 +1304,7 @@ msgstr "Промяна настройки" msgid "Current settings" msgstr "Текущи настройки" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Заглавие на диаграмата" @@ -1389,7 +1390,7 @@ msgstr "Обяснение на изхода" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Време" @@ -1485,7 +1486,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1542,7 +1543,7 @@ msgid "Cancel" msgstr "Отмяна" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Зареждане" @@ -1690,7 +1691,7 @@ msgstr "Скриване формата за заявки" msgid "Show query box" msgstr "Показване формата за заявки" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1703,7 +1704,7 @@ msgstr "Редакция" msgid "No rows selected" msgstr "Няма върнати редове" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1788,7 +1789,7 @@ msgstr "" msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Копиране" @@ -1804,7 +1805,7 @@ msgstr "Linestring" msgid "Polygon" msgstr "Многоъгълник" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Геометрия" @@ -2302,33 +2303,33 @@ msgstr "на час" msgid "per day" msgstr "на ден" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Текущия файл с настройки (%s) е недостъпен." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Неподходящи права на файлът с настройки, в него не трябва да може да пише " "всеки!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Размер шрифт" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Възходящо" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2482,14 +2483,14 @@ msgstr "Прелистване" msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Изтриване" @@ -2580,16 +2581,11 @@ msgstr "хоризонтален (обърнати хедъри)" msgid "vertical" msgstr "вертикален" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Заглавки всеки %s реда" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Сортиране по ключ" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,89 +2612,89 @@ msgstr "Сортиране по ключ" msgid "Options" msgstr "Настройки" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Частични текстове" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Пълни текстове" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Показване на двоичните данни" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Показване на BLOB-данните" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Показване на двоичните данни в шестнадесетичен вид" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Без трансформация от браузъра" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Добре познат текст" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Добре позната двоична стойност" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Спиране" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Може да има приблизителна стойност. Виж [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "в зявката" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Показване на записи" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "общо" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2707,8 +2703,8 @@ msgstr "Заявката отне %01.4f секунди" msgid "With selected:" msgstr "Когато има отметка:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2719,45 +2715,45 @@ msgstr "Когато има отметка:" msgid "Check All" msgstr "Маркиране всички" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Създаване на изглед" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Операции с резултата от заявката" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Преглед за печат" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Преглед за печат (пълни текстове)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Диаграма" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Визуализиране на GIS данни" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Връзките не са намерени" @@ -2834,38 +2830,38 @@ msgstr "Не е избран индекс!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индекси" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Уникално" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Опаковани" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Колация" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Коментар" @@ -2907,7 +2903,7 @@ msgstr "Изглед" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3052,15 +3048,15 @@ msgstr[1] "%1$d реда добавени." msgid "Error while creating PDF:" msgstr "Грешка при създаване на PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Наскоро отваряната таблице не можа да бъде записана" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Отваряни таблици" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Няма наскоро отваряни таблици" @@ -3299,7 +3295,7 @@ msgid "Maximum rows to plot" msgstr "Максимален брой редове за изчертаване" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" @@ -3400,14 +3396,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3647,7 +3643,7 @@ msgstr "Изброяване, избор от списък на определе msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3708,7 +3704,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "На място" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профилиране" @@ -4175,8 +4171,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Определя какъв вид полета за редакция да бъдат използвани за колони тип CHAR " -"и VARCHAR:[kbd]input[/kbd] - позволява ограничаване по дължина, " -"[kbd]textarea[/kbd] - позволява вмъкването на нови редове" +"и VARCHAR:[kbd]input[/kbd] - позволява ограничаване по дължина, [kbd]textarea" +"[/kbd] - позволява вмъкването на нови редове" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4184,8 +4180,8 @@ msgstr "Редакция на CHAR колони" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Използване на удобен за потребителя редактор за писане на SQL заявките " "([a@http://codemirror.net/]CodeMirror[/a]) със синтактично оцветяване и " @@ -4740,13 +4736,11 @@ msgstr "Заглавие в браузъра" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Настройте заглавието в браузъра. Прочетете " -"[doc@cfg_TitleTable]документацията[/doc] за магическите низове и техните " -"стойности." +"Настройте заглавието в браузъра. Прочетете [doc@cfg_TitleTable]документацията" +"[/doc] за магическите низове и техните стойности." #: libraries/config/messages.inc.php:192 #: libraries/navigation/NavigationHeader.class.php:204 @@ -5515,8 +5509,8 @@ msgstr "Таблица за белязки" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5601,9 +5595,9 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Допълнителна информация в [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]системата за проследяване на дефекти на PMA[/a] и [a@http://bugs." -"mysql.com/19588]дефекти на MySQL[/a]" +"Допълнителна информация в [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"системата за проследяване на дефекти на PMA[/a] и [a@http://bugs.mysql." +"com/19588]дефекти на MySQL[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5725,8 +5719,8 @@ msgstr "Последно отваряна таблица" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5743,11 +5737,11 @@ msgstr "Команда SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]" +"За примери посетете [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"видове удостоверяване[/a]" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5850,8 +5844,8 @@ msgstr "Изрази, които да бъдат проследявани" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5870,8 +5864,8 @@ msgstr "Автоматично създаване на версии" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5993,8 +5987,8 @@ 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]" +"Показва връзка към изхода на [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6074,11 +6068,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Ако имате отделно потребителско име, въведете го тук (по подразбиране е " -"[kbd]anonymous[/kbd])" +"Ако имате отделно потребителско име, въведете го тук (по подразбиране е [kbd]" +"anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Потребителско име" @@ -6489,7 +6483,7 @@ msgstr "БД:" msgid "Table(s):" msgstr "Таблица(и):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Редове:" @@ -6538,8 +6532,8 @@ msgstr ", @TABLE@ ще стане името на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7033,8 +7027,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7050,7 +7044,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." @@ -7170,11 +7164,11 @@ msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7225,7 +7219,7 @@ msgstr "Добавяне на представка на таблица" msgid "Add prefix" msgstr "Добавяне на представка" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Наистина ли искате да изпълните следната заявка?" @@ -7574,17 +7568,17 @@ msgid "Drop the database (DROP)" msgstr "Изтриване на БД (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Само структурата" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структурата и данните" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Само данните" @@ -7747,8 +7741,8 @@ msgstr "Добре дошли в %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Изглежда не се създали конфигурационен файл. Вероятно ще искате да " "използвате %1$sскрипта за настройки%2$s, за да го създадете." @@ -8006,7 +8000,7 @@ msgstr "Поставяне имената на полетата в първи р #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8014,7 +8008,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8032,7 +8026,7 @@ msgstr "Версия на PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8188,8 +8182,8 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" "Съхраняване на полета от вида TIMESTAMP в UTC формат(позволява полетата " -"TIMESTAMP да бъдат експортирани и четени от сървъри в различни часови " -"пояси)" +"TIMESTAMP да бъдат експортирани и четени от сървъри в различни часови пояси)" +"" #: libraries/plugins/export/ExportSql.class.php:1198 msgid "Constraints for dumped tables" @@ -8396,10 +8390,10 @@ msgstr "" "Text_Plain_External.class.php и да изредите програмите, на които позволявате " "да бъдат стартирани. Първата опция тогава е номера на програмата, която " "бихте искали да използвате, а втората са параметрите ѝ. Ако третият " -"параметър е установен на 1, ще конвертира изхода използвайки " -"htmlspecialchars() (По подразбиране е 1). Ако четвъртият параметър е " -"установен на 1 това ще предотврати спренос на нов ред и целият изход ще бъде " -"показан на един ред (По подразбиране е 1)." +"параметър е установен на 1, ще конвертира изхода използвайки htmlspecialchars" +"() (По подразбиране е 1). Ако четвъртият параметър е установен на 1 това ще " +"предотврати спренос на нов ред и целият изход ще бъде показан на един ред " +"(По подразбиране е 1)." #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -9136,7 +9130,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Допълнително" @@ -9301,7 +9295,7 @@ msgid "Library" msgstr "Библиотека" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версия" @@ -9766,8 +9760,8 @@ msgstr "Преглед потребители" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските права директно от таблицата с " "правата на MySQL. Съдържанието на тази таблица може да се различава от " @@ -9782,63 +9776,265 @@ msgstr "Избраният потребител не беше открит в т msgid "You have added a new user." msgstr "Вие добавихте нов потребител." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d секунда" +msgstr[1] "%d секунди" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d минута" +msgstr[1] "%d минути" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Статистика на дневника" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Анализатор заявки" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Инструкции на наблюдателя" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Наблюдателят на phpMyAdmin може да ви помогне при оптимизиране на " +"конфигурацията на сървъра и да проследи времеемките заявки. За последното ще " +"трябва да настроите log_output на 'TABLE' и да разрешите slow_query_log или " +"general_log. Отбележете обаче, че general_log генерира много данни и " +"натоварването на сървъра се увеличава с до 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Използване наблюдател:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Добавяне диаграма" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Променливи(а) на състоянието" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Избор на серии:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "или въведете променлива:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Прилагане на разделител" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Включване на Наблюдателя" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Включване синтактичното оцветяване" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Скорост на опресняване" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Стойност по подразбиране" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL резултат" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Генерирано от" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Файлове с данни" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Друго" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Начало" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Общо време:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Затваряне" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Отбелязване SQL заявката" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Етикет" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Всеки потребител да има достъп до тази белязка" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9859,10 +10055,6 @@ msgstr "Изчистване" msgid "Bookmark this SQL query:" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Всеки потребител да има достъп до тази белязка" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замяна белязката със същото име" @@ -9953,8 +10145,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" -"%s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" +"s." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10003,7 +10195,7 @@ msgstr "Маркиране на таблиците със загубено мя msgid "Sort" msgstr "Сортиране" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Няма" @@ -10159,7 +10351,7 @@ msgstr "Ефективни" msgid "Table %1$s has been altered successfully" msgstr "Таблицата %1$s беше променена" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Грешка в заявката" @@ -10315,7 +10507,7 @@ msgstr "Грешка в ZIP архива:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Промените бяха запазени" @@ -10371,7 +10563,7 @@ msgstr "Превключване на малки/големи" msgid "Toggle relation lines" msgstr "Превключване на редовете с релации" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/експорт на координатите за PDF схема" @@ -10431,43 +10623,43 @@ msgstr "Агрегиране" msgid "Active options" msgstr "Активни опции" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Страница беше създадена" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Неуспешно създаване на страница" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Страница" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Импорт от избрания файл" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Експорт към избраната страница" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "създаване на страница и експорт към нея" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Име: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Експорт/импорт в мащаб" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "препоръчително" @@ -10497,7 +10689,7 @@ msgstr "Добавена е вътрешна релация" msgid "Relation deleted" msgstr "Релацията изтрита" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Грешка при запазване на координатите в Строител." @@ -10551,8 +10743,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " -"%sскрипта за настройки%s." +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %" +"sскрипта за настройки%s." #: prefs_manage.php:308 msgid "Save to browser's storage" @@ -10922,193 +11114,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Инструкции на наблюдателя" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Наблюдателят на phpMyAdmin може да ви помогне при оптимизиране на " -"конфигурацията на сървъра и да проследи времеемките заявки. За последното ще " -"трябва да настроите log_output на 'TABLE' и да разрешите slow_query_log или " -"general_log. Отбележете обаче, че general_log генерира много данни и " -"натоварването на сървъра се увеличава с до 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Използване наблюдател:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Добавяне диаграма" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Променливи(а) на състоянието" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Избор на серии:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "или въведете променлива:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Прилагане на разделител" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Статистика на дневника" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Анализатор заявки" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d секунда" -msgstr[1] "%d секунди" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d минута" -msgstr[1] "%d минути" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Включване на Наблюдателя" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Включване синтактичното оцветяване" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Скорост на опресняване" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Стойност по подразбиране" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12001,8 +12006,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12043,26 +12048,26 @@ msgstr "Ключът трябва да съдържа букви, цифри [em msgid "Wrong data" msgstr "Грешни данни" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Белязка %s беше създадена" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12075,21 +12080,11 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Отбелязване SQL заявката" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Етикет" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12313,143 +12308,143 @@ msgstr "Изберете колона за показване" msgid "No column selected." msgstr "Няма върнати редове" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Проследяването на %1$s беше изключено във версия %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Проследяването на %1$s беше включено във версия %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Няма данни" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Израз за дефиниране на данни" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Израз за манипулация на данни" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Изпълняване на SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Експорт като %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Показване на версиите" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Изключване проследяването за %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Изключване сега" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Включване проследяването за %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Включване сега" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Създаване на версия %1$s от %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Проследяване следните изрази за дефиниране на данни:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Проследяване следните изрази за манипулиране на данни:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Създаване на версия" @@ -12803,8 +12798,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12923,8 +12918,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% от всички сортировки се изпълняват с временни таблици, тази стойност " "трябва да бъде под 10%%." @@ -13610,6 +13605,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert e 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Заглавки всеки %s реда" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/bn.po b/po/bn.po index 3acaf48f21..1028bf80de 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-30 12:59+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali \n" -"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "খুঁজুন" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "খুঁজুন" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "যাও" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "বর্ণনা" @@ -109,7 +109,7 @@ msgstr "" "%s ফাইল এই সিস্টেমের মধ্যে উপলব্ধ নয়। আরও তথ্যের জন্য অনুগ্রহ করে www.phpmyadmin." "net পরিদর্শন করুন।" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ডাটাবেজ মুছে ফেলা হয়েছে" @@ -139,7 +139,7 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "স্তম্ভ" @@ -162,7 +162,7 @@ msgstr "স্তম্ভ" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "ধরন" @@ -179,7 +179,7 @@ msgstr "ধরন" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "খালি" @@ -194,7 +194,7 @@ msgstr "খালি" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "ডিফল্ট" @@ -236,9 +236,9 @@ msgstr "মন্তব্যসমূহ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "না" @@ -263,9 +263,9 @@ msgstr "না" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "হ্যাঁ" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "টেবিল" @@ -401,7 +401,7 @@ msgstr "টেবিলগুলি ট্রাক করা" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "ডাটাবেজ" @@ -409,17 +409,17 @@ msgstr "ডাটাবেজ" msgid "Last version" msgstr "সর্বশেষ সংস্করণ" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "তৈরী করা হয়েছে" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "আপডেটেড" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "অবস্থা" @@ -432,7 +432,7 @@ msgstr "অবস্থা" msgid "Action" msgstr "Action" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "দেখান" @@ -448,11 +448,11 @@ msgstr "এই টেবিলের জন্য ট্র্যাকিং msgid "Drop" msgstr "মুছে ফেল" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "সক্রিয়" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "সক্রিয় নয়" @@ -460,11 +460,11 @@ msgstr "সক্রিয় নয়" msgid "Versions" msgstr "সংস্করণসমূহ" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "ট্র্যাকিং রিপোর্ট" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "গঠন স্ন্যাপশট" @@ -624,8 +624,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -665,7 +665,7 @@ msgstr "অক্ষর সেট রূপান্তর গ্রন্থা msgid "Could not load import plugins, please check your installation!" msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" @@ -687,7 +687,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -899,7 +899,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -909,7 +909,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" @@ -996,8 +996,8 @@ msgstr "বিশেষাধিকার রিলোড" msgid "Removing Selected Users" msgstr "নির্ধারিত ব্যবহারীসমূহ মূছা হচ্ছে" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "বন্ধ" @@ -1123,13 +1123,13 @@ msgstr "বাইট" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "কিলোবাইট" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "মেগাবাইট" @@ -1168,7 +1168,7 @@ msgid "Traffic" msgstr "Traffic" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "সেটিংস" @@ -1188,13 +1188,14 @@ msgstr "গ্রিডে লেখচিত্র যোগ করুন" msgid "Please add at least one variable to the series" msgstr "অনুগ্রহপূর্বক সিরিজসমূহে কমপক্ষে একটি চলক যোগ করুন" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "কোনটিই নয়" @@ -1294,7 +1295,7 @@ msgstr "General relation features" msgid "Current settings" msgstr "General relation features" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1384,7 +1385,7 @@ msgstr "SQL ব্যাখ্যা কর" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "সময়" @@ -1494,7 +1495,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" @@ -1559,7 +1560,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "লোকাল" @@ -1742,7 +1743,7 @@ msgstr "SQL query" msgid "Show query box" msgstr "SQL query" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1755,7 +1756,7 @@ msgstr "সম্পাদনা কর" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1847,7 +1848,7 @@ msgstr "Data pointer size" msgid "Ignore" msgstr "Ignore" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1863,7 +1864,7 @@ msgstr "লাইনস্ট্র্রিং" msgid "Polygon" msgstr "পলিগন" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "জ্যামিতি" @@ -2408,31 +2409,31 @@ msgstr "per hour" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "ফন্ট এর আকার" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascending" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2590,14 +2591,14 @@ msgstr "ব্রাউজ করুন" msgid "Delete the matches for the %s table?" msgstr "%s মানানসই টেবিলটি মুছে দেবেন?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "মুছে ফেল" @@ -2701,17 +2702,11 @@ msgstr "" msgid "vertical" msgstr "লম্ব" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Execute bookmarked query" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2739,98 +2734,98 @@ msgstr "Sort by key" msgid "Options" msgstr "Operations" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "হয়ত আনুমানিক। [doc@faq3-11]FAQ ৩.১১[/doc] দেখ।" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "এই ভিউ এ অন্তত এই সংখ্যক সারি রয়েছে। %sdocumentation%s পড়ুন." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "মোট" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2839,8 +2834,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2851,48 +2846,48 @@ msgstr "" msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Server version" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Print view" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -2968,38 +2963,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "একত্রীকরণ" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "মন্তব্যসমূহ" @@ -3040,7 +3035,7 @@ msgstr "View" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structure" @@ -3192,18 +3187,18 @@ msgstr[1] "No rows selected" msgid "Error while creating PDF:" msgstr "Allows reading data." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "কোন টেবিল নাই" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "টেবিল পরীক্ষা কর" @@ -3453,7 +3448,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3556,14 +3551,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3807,7 +3802,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3870,7 +3865,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4352,8 +4347,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4931,9 +4926,8 @@ msgstr "পাতার সংখ্যাঃ" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5724,8 +5718,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5932,8 +5926,8 @@ msgstr "টেবিল বিশ্লেষণ কর" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5951,8 +5945,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6056,8 +6050,8 @@ msgstr "Statements" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6078,8 +6072,8 @@ msgstr "Automatic recovery mode" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6277,8 +6271,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" @@ -6697,7 +6691,7 @@ msgstr "ডাটাবেজসমূহ Databases" msgid "Table(s):" msgstr "টেবিলসমূহ" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6757,12 +6751,12 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7288,8 +7282,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7307,7 +7301,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7429,12 +7423,12 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7489,7 +7483,7 @@ msgstr "টেবিল উপসর্গ প্রতিস্থাপন" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7828,17 +7822,17 @@ msgid "Drop the database (DROP)" msgstr "ডাটাবেজটি ফেলে দিন (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "শুধুই গঠনপ্রণালী" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "গঠনপ্রণালী এবং তথ্য" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "শুধু তথ্য" @@ -8011,8 +8005,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন" @@ -8299,7 +8293,7 @@ msgstr "Put fields names in the first row" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8307,7 +8301,7 @@ msgstr "হোষ্ট" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8325,7 +8319,7 @@ msgstr "PHP Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8728,8 +8722,8 @@ msgstr "" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 #, fuzzy #| msgid "" -#| "ys the contents of the field as-is, without running it through " -#| "ecialchars(). That is, the field is assumed to contain valid HTML." +#| "ys the contents of the field as-is, without running it through ecialchars" +#| "(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -9519,7 +9513,7 @@ msgstr "Attributes" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "অতিরিক্ত" @@ -9695,7 +9689,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "পারসিয়ান" @@ -10160,8 +10154,8 @@ msgstr "User overview" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -10172,61 +10166,278 @@ msgstr "" msgid "You have added a new user." msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "per second" +msgstr[1] "per second" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in use" +msgstr[1] "in use" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Row Statistics" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "সব সিলেক্ট করুন" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Query type" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "%s ক্ষেত্রসমূহ যোগ কর" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "ডাটাবেজ রিনেম কর" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "টেবিল সিলেক্ট করুন" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Invalid table name" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "একটি নতুন ইউজার যোগ করুন" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL query" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "শনিবার" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Refresh" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Add/Delete Field Columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL result" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "তৈরী কর" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "ডাটা ফাইলসমূহ" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "স্থিতি উপাত্ত" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "অবস্থা" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "মোট" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "সময়" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "বন্ধ" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "সময়" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "এই SQL query টি বুকমার্ক করুন" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "লেবেল" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10248,10 +10459,6 @@ msgstr "ক্যালেন্ডার" msgid "Bookmark this SQL query:" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন" @@ -10377,7 +10584,7 @@ msgstr "ওভারহেড সহ টেবিল পরীক্ষা ক msgid "Sort" msgstr "সাজাঁন" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10546,7 +10753,7 @@ msgstr "Effective" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10715,7 +10922,7 @@ msgstr "ZIP archive: এ ভূল আছে" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10774,7 +10981,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Traditional Chinese" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10848,52 +11055,52 @@ msgstr "তৈরী করুন" msgid "Active options" msgstr "Table options" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Table %s has been dropped" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "পাতাসমুহ" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ফাইল ইম্পোর্ট কর" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "No rows selected" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ব্যাভারকারীর নাম" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "No rows selected" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10923,7 +11130,7 @@ msgstr "Internal relations" msgid "Relation deleted" msgstr "Relation view" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11348,208 +11555,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "%s ক্ষেত্রসমূহ যোগ কর" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "ডাটাবেজ রিনেম কর" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "টেবিল সিলেক্ট করুন" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Invalid table name" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "একটি নতুন ইউজার যোগ করুন" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL query" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Row Statistics" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "সব সিলেক্ট করুন" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Query type" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "per second" -msgstr[1] "per second" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "in use" -msgstr[1] "in use" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "শনিবার" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Refresh" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Add/Delete Field Columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12456,8 +12461,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12500,49 +12505,39 @@ msgstr "" msgid "Wrong data" msgstr "কোন ডাটাবেজ নাই" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "এই SQL query টি বুকমার্ক করুন" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "লেবেল" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12779,151 +12774,151 @@ msgstr "প্রদর্শনের জন্য ক্ষেত্র পছ msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ট্র্যাকিং সক্রিয়।" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ট্র্যাকিং সক্রিয়।" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "কোন ডাটাবেজ নাই" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "ডাটা" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Export type" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "এই টেবিলের জন্য ট্র্যাকিং ডাটা মুছুন" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server version" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Server version" @@ -13306,8 +13301,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13441,8 +13436,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14162,6 +14157,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Execute bookmarked query" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/br.po b/po/br.po index d1ca53ee98..e4d997b334 100644 --- a/po/br.po +++ b/po/br.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-11-05 10:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton \n" -"Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: br\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 1.3-dev\n" @@ -51,7 +51,7 @@ msgid "Search:" msgstr "Klask" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -80,21 +80,21 @@ msgstr "Klask" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Mont" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Anv ar meneger" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Deskrivadur" @@ -113,7 +113,7 @@ msgstr "" "N'eo ket hegerz ar restr %s er servijer-mañ. Kit da welet war www.phpmyadmin." "net evit gouzout hiroc'h." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Krouet eo bet an diaz roadennoù %1$s." @@ -143,7 +143,7 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Bann" @@ -166,7 +166,7 @@ msgstr "Bann" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Seurt" @@ -183,7 +183,7 @@ msgstr "Seurt" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -198,7 +198,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Dre ziouer" @@ -240,9 +240,9 @@ msgstr "Evezhiadennoù" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ket" @@ -267,9 +267,9 @@ msgstr "Ket" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ya" @@ -323,7 +323,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Taolenn" @@ -405,7 +405,7 @@ msgstr "Taolennoù heuliet-pizh" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Diaz roadennoù" @@ -413,17 +413,17 @@ msgstr "Diaz roadennoù" msgid "Last version" msgstr "Stumm diwezhañ" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Krouet" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Hizivaet" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Statud" @@ -436,7 +436,7 @@ msgstr "Statud" msgid "Action" msgstr "Oberiadenn" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Diskouez" @@ -452,11 +452,11 @@ msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" msgid "Drop" msgstr "Diverkañ" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "oberiant" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "dizoberiant" @@ -464,11 +464,11 @@ msgstr "dizoberiant" msgid "Versions" msgstr "Stummoù" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Danevell heuliañ" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Gwel prim eus ar framm" @@ -630,14 +630,14 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " -"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." +"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %" +"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -682,7 +682,7 @@ msgstr "Dibosupl amdreiñ an arouezennoù hep levraoueg amdreiñ" msgid "Could not load import plugins, please check your installation!" msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Krouet eo bet ar sined %s" @@ -709,7 +709,7 @@ msgstr "" "Peurliesañ e talvez n'hallo ket PhpMyAdmin echuiñ da enporzhiañ an traoù ma " "ne vez ket kresket ganeoc'h bevenn amzer PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -905,7 +905,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" @@ -915,7 +915,7 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" msgid "Do you really want to execute \"%s\"?" msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !" @@ -1004,8 +1004,8 @@ msgstr "Oc'h adkargañ an dreistgwirioù" msgid "Removing Selected Users" msgstr "O lemel kuit an implijerien diuzet" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Serriñ" @@ -1128,13 +1128,13 @@ msgstr "o" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "Mio" @@ -1175,7 +1175,7 @@ msgid "Traffic" msgstr "Tremenerezh" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Arventennoù" @@ -1195,13 +1195,14 @@ msgstr "Ouzhpennañ ur grafik d'ar gael" msgid "Please add at least one variable to the series" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Hini" @@ -1301,7 +1302,7 @@ msgstr "Kemmañ an arventennoù" msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Titl ar grafik" @@ -1392,7 +1393,7 @@ msgstr "Displegañ SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1496,7 +1497,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Enporzhiañ" @@ -1563,7 +1564,7 @@ msgid "Cancel" msgstr "Nullañ" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "O kargañ" @@ -1723,7 +1724,7 @@ msgstr "Kuzhat ar voest rekedoù SQL" msgid "Show query box" msgstr "Diskouez ar voest rekedoù SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1736,7 +1737,7 @@ msgstr "Kemmañ" msgid "No rows selected" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1826,7 +1827,7 @@ msgstr "" msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1842,7 +1843,7 @@ msgstr "Aradennad linennoù" msgid "Polygon" msgstr "Lieskorneg" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Mentoniezh" @@ -2333,31 +2334,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Ment an destenn" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "War gresk" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2511,14 +2512,14 @@ msgstr "Furchal" msgid "Delete the matches for the %s table?" msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Diverkañ" @@ -2617,17 +2618,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute" -msgid "Headers every %s rows" -msgstr "Seveniñ" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2654,91 +2649,91 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " -"%steulioù titouriñ%s." +"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %" +"steulioù titouriñ%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2747,8 +2742,8 @@ msgstr "" msgid "With selected:" msgstr "Evit ar re zo diuzet :" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2759,45 +2754,45 @@ msgstr "Evit ar re zo diuzet :" msgid "Check All" msgstr "Askañ pep tra" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ezporzhiañ" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Stumm da voullañ" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2879,38 +2874,38 @@ msgstr "N'eus bet termenet meneger ebet !" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Menegerioù" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Dibar" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Gwasket" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalegezh" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Etrerummadiñ" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Evezhiadenn" @@ -2952,7 +2947,7 @@ msgstr "Gwelet" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Framm" @@ -3097,15 +3092,15 @@ msgstr[1] "%1$d linenn ensoc'het." msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "N'eus ket bet gallet enrollañ an daolenn envez" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Taolennoù nevez" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "N'eus taolenn nevez ebet" @@ -3350,7 +3345,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3453,14 +3448,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3704,7 +3699,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Ment vrasañ : %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3765,7 +3760,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Enlinenn" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "O profilañ" @@ -4197,8 +4192,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre " -"[kbd]cookie[/kbd]" +"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre [kbd]cookie" +"[/kbd]" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4239,8 +4234,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Spisaat peseurt doare kontrolloù kemmañ a zleer ober ganto evit ar bannoù " -"CHAR ha VARCHAR; [kbd]input[/kbd] - a dalvez da grennañ ar vent, " -"[kbd]textarea[/kbd] - a aotren lakaat linennoù nevez er bannoù" +"CHAR ha VARCHAR; [kbd]input[/kbd] - a dalvez da grennañ ar vent, [kbd]" +"textarea[/kbd] - a aotren lakaat linennoù nevez er bannoù" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4248,8 +4243,8 @@ msgstr "Kemmañ ar bannoù CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4656,8 +4651,8 @@ 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 "" -"Urzh renkañ evit an elfennoù en ur voest desachañ alc'hwezioù estren; " -"[kbd]content[/kbd] zo evit an roadenn a zaveer dezhi, [kbd]id[/kbd] zo evit " +"Urzh renkañ evit an elfennoù en ur voest desachañ alc'hwezioù estren; [kbd]" +"content[/kbd] zo evit an roadenn a zaveer dezhi, [kbd]id[/kbd] zo evit " "talvout an alc'hwez" #: libraries/config/messages.inc.php:149 @@ -4804,9 +4799,8 @@ msgstr "Titloù pajennoù" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Spisaat testenn barrenn ditl ar merdeer. En em zaveiñ d'an " "[doc@cfg_TitleTable]teuliadur[/doc] evit an neudennadoù hud a c'haller ober " @@ -5576,8 +5570,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5770,8 +5764,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5788,8 +5782,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5886,8 +5880,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5906,8 +5900,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6097,8 +6091,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6496,7 +6490,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6545,8 +6539,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7051,8 +7045,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7068,7 +7062,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." @@ -7190,11 +7184,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7245,7 +7239,7 @@ msgstr "Erlec'hiañ rakger an daolenn" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7580,17 +7574,17 @@ msgid "Drop the database (DROP)" msgstr "Diverkañ an diaz roadennoù (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Ar framm hepken" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Ar roadennoù hepken" @@ -7753,11 +7747,11 @@ msgstr "Degemer mat e %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " -"%1$sskript kefluniañ%2$s da sevel unan." +"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %" +"1$sskript kefluniañ%2$s da sevel unan." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8016,13 +8010,13 @@ msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -8040,7 +8034,7 @@ msgstr "Stummoù" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9135,7 +9129,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9298,7 +9292,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9744,8 +9738,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9756,60 +9750,273 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Query statistics" +msgid "Log statistics" +msgstr "Stadegoù war ar rekedoù" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +#, fuzzy +#| msgid "Pause monitor" +msgid "Using the monitor:" +msgstr "Paouez gant an evezhiañ" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "Dilemel ar grafik" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Foreign Key" +msgid "Select series:" +msgstr "Diuzit an alc'hwez estren" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Anv taolenn direizh" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add user" +msgid "Add this series" +msgstr "Ouzhpennañ un implijer" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Freskaat" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "Bannoù evit an takadoù skrid CHAR" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Adlakaat an talvoud dre ziouer" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "Genel" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Udb all" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Pajenn deraouiñ" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total:" msgid "Total Time" msgstr "Hollad :" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Theme" msgid "% Time" msgstr "Tem" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Serriñ" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Theme" msgid "ø Time" msgstr "Tem" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "Alc'hwez an dikedenn" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9828,10 +10035,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9957,7 +10160,7 @@ msgstr "Askañ an taolennoù gant dilerc'hioù" msgid "Sort" msgstr "Urzhiañ" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10119,7 +10322,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -10261,7 +10464,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10317,7 +10520,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10377,39 +10580,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10437,7 +10640,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10846,204 +11049,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -#, fuzzy -#| msgid "Pause monitor" -msgid "Using the monitor:" -msgstr "Paouez gant an evezhiañ" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "Dilemel ar grafik" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Foreign Key" -msgid "Select series:" -msgstr "Diuzit an alc'hwez estren" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Anv taolenn direizh" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add user" -msgid "Add this series" -msgstr "Ouzhpennañ un implijer" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Query statistics" -msgid "Log statistics" -msgstr "Stadegoù war ar rekedoù" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Freskaat" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "Bannoù evit an takadoù skrid CHAR" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Adlakaat an talvoud dre ziouer" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -11926,8 +11931,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11968,47 +11973,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Krouet eo bet ar sined %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "Alc'hwez an dikedenn" - #: tbl_chart.php:38 #, fuzzy #| msgid "Choose column to display" @@ -12239,148 +12234,148 @@ msgstr "Dibab ar bann da ziskouez" msgid "No column selected." msgstr "N'eus bet diuzet linenn ebet" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Roadennoù a vank evit %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Other core settings" msgid "Create version %1$s of %2$s" msgstr "Arventennoù pouezus all" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12766,8 +12761,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12900,8 +12895,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13581,6 +13576,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute" +#~ msgid "Headers every %s rows" +#~ msgstr "Seveniñ" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -13662,8 +13662,8 @@ msgstr "" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Gweredekaat kement-mañ a aotre ur bajenn zo en un domani disheñvel da " -#~ "c'hervel phpMyAdmin e diabarzh ur framm, ar pezh a ya d'ober un " -#~ "[strong]toull surentez[/strong] posupl evit tagadennoù skript etre frammoù" +#~ "c'hervel phpMyAdmin e diabarzh ur framm, ar pezh a ya d'ober un [strong]" +#~ "toull surentez[/strong] posupl evit tagadennoù skript etre frammoù" #~ msgid "Allow third party framing" #~ msgstr "Aotren ar frammoù a-berzh tud all" diff --git a/po/bs.po b/po/bs.po index 8f83b8bee7..919439ffb6 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-17 09:33+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Bosnian " -"\n" -"Language: bs\n" +"Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Pretraživanje" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Pretraživanje" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -108,7 +108,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." @@ -138,7 +138,7 @@ msgstr "Komentari tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolona" @@ -161,7 +161,7 @@ msgstr "Kolona" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tip" @@ -178,7 +178,7 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -193,7 +193,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Podrazumjevano" @@ -235,9 +235,9 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -262,9 +262,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Da" @@ -301,9 +301,6 @@ msgstr "Baza %1$s je kopirana u %2$s" #: db_operations.php:261 #, php-format -#| msgid "" -#| " additional features for working with linked tables have been ctivated. " -#| "To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." @@ -317,7 +314,7 @@ msgstr "phpMyAdmin konfiguracijski spremnik je isključen. %sSaznaj više%s." #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -374,7 +371,6 @@ msgstr "Morate izabrati bar jednu kolonu za prikaz" #: db_qbe.php:60 #, php-format -#| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pređi na %svizualni graditelj%s" @@ -387,7 +383,6 @@ msgid "Access denied" msgstr "Ulaz nije dozvoljen" #: db_structure.php:86 -#| msgid "No tables found in database." msgid "No tables found in database" msgstr "Nema pronađenih tabela u bazi" @@ -403,7 +398,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Baza podataka" @@ -411,17 +406,17 @@ msgstr "Baza podataka" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Kreirano" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -434,7 +429,7 @@ msgstr "Status" msgid "Action" msgstr "Akcija" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Prikaži" @@ -450,11 +445,11 @@ msgstr "" msgid "Drop" msgstr "Odbaci" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -462,11 +457,11 @@ msgstr "" msgid "Versions" msgstr "Verzije" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" @@ -628,8 +623,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -669,7 +664,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -691,7 +686,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -902,7 +897,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -912,7 +907,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1009,8 +1004,8 @@ msgstr "Globalne privilegije" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1144,13 +1139,13 @@ msgstr "bajta" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1191,7 +1186,7 @@ msgid "Traffic" msgstr "Saobraćaj" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1214,13 +1209,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "nema" @@ -1320,7 +1316,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1408,7 +1404,7 @@ msgstr "Objasni SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Vrijeme" @@ -1518,7 +1514,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1582,7 +1578,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Lokalni" @@ -1761,7 +1757,7 @@ msgstr "SQL upit" msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1774,7 +1770,7 @@ msgstr "Promeni" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1866,7 +1862,7 @@ msgstr "Sadržaj" msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1884,7 +1880,7 @@ msgstr "Linije se završavaju sa" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2429,31 +2425,31 @@ msgstr "na sat" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Rastući" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2612,14 +2608,14 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Obriši" @@ -2728,17 +2724,11 @@ msgstr "horizontalnom (rotirana zaglavlja)" msgid "vertical" msgstr "vertikalnom" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši upamćen upit" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2766,98 +2756,98 @@ msgstr "" msgid "Options" msgstr "Operacije" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Dio teksta" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pun tekst" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Tranformacije čitača" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "u upitu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2866,8 +2856,8 @@ msgstr "Upit je trajao %01.4f sekundi" msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2878,48 +2868,48 @@ msgstr "Označeno:" msgid "Check All" msgstr "Označi sve" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Za štampu" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2996,38 +2986,38 @@ msgstr "Ključ nije definisan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Sortiranje" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Komentari" @@ -3068,7 +3058,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -3219,16 +3209,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "Dozvoljava čitanje podataka." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Nema tabela" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3479,7 +3469,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" @@ -3581,14 +3571,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3831,7 +3821,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3892,7 +3882,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4378,8 +4368,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4947,9 +4937,8 @@ msgstr "Broj strane:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5718,8 +5707,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5924,8 +5913,8 @@ msgstr "Analiziraj tabelu" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5943,8 +5932,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6046,8 +6035,8 @@ msgstr "Ime" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6067,8 +6056,8 @@ msgstr "Verzija servera" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6263,8 +6252,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Korisničko ime:" @@ -6680,7 +6669,7 @@ msgstr "Baze" msgid "Table(s):" msgstr "Tabele" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6736,8 +6725,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7252,8 +7241,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7271,7 +7260,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -7394,11 +7383,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7455,7 +7444,7 @@ msgstr "Dodaj novo polje" msgid "Add prefix" msgstr "Dodaj novo polje" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7800,17 +7789,17 @@ msgid "Drop the database (DROP)" msgstr "Baza ne postoji" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura i podatci" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podaci" @@ -7985,8 +7974,8 @@ msgstr "Dobrodošli na %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8263,7 +8252,7 @@ msgstr "Stavi imena polja u prvi red" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8271,7 +8260,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8289,7 +8278,7 @@ msgstr "verzija PHP-a" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9453,7 +9442,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9629,7 +9618,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "verzija PHP-a" @@ -10100,8 +10089,8 @@ msgstr "Pregled korisnika" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " @@ -10116,56 +10105,270 @@ msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "u sekundi" +msgstr[1] "u sekundi" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "se koristi" +msgstr[1] "se koristi" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistike reda" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Izaberi sve" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Vrsta upita" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Dodaj novo polje" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Promjeni ime tabele u " + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Izaberi tabele" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Dodaj novog korisnika" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL upit" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sub" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Generirao" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dodaj/obriši kolonu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generirao" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Samo podaci" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ukupno" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vrijeme" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Obilježi SQL-upit" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Naziv" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10186,10 +10389,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10332,7 +10531,7 @@ msgstr "" msgid "Sort" msgstr "Sortiranje" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10500,7 +10699,7 @@ msgstr "Efektivne" msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10668,7 +10867,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" @@ -10726,7 +10925,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Tradicionalni kineski" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10801,48 +11000,48 @@ msgstr "Napravi" msgid "Active options" msgstr "Opcije tabele" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Zauzeće" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvoz fajlova" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Napravi novi ključ" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ime korisnika" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10872,7 +11071,7 @@ msgstr "Opšte osobine relacija" msgid "Relation deleted" msgstr "Relacioni pogled" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11295,205 +11494,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Dodaj novo polje" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Promjeni ime tabele u " - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Izaberi tabele" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Dodaj novog korisnika" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL upit" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistike reda" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Izaberi sve" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Vrsta upita" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "u sekundi" -msgstr[1] "u sekundi" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "se koristi" -msgstr[1] "se koristi" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sub" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Generirao" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dodaj/obriši kolonu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12389,8 +12389,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12433,47 +12433,37 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Obilježi SQL-upit" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Naziv" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12713,148 +12703,148 @@ msgstr "Izaberi polja za prikaz" msgid "No column selected." msgstr "Nije izabrana ni jedna baza." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dozvoljava umetanje i zamjenu podataka." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza ne postoji" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Verzija servera" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Verzija servera" @@ -13225,8 +13215,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13353,8 +13343,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14014,6 +14004,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izvrši upamćen upit" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ca.po b/po/ca.po index 0f01bfccf0..62fc512ddf 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-30 13:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Cerca" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Cerca" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Executa" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nom de clau" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descripció" @@ -109,7 +109,7 @@ msgstr "" "L'arxiu %s no es troba en aquest sistema, si us plau, visita www.phpmyadmin." "net per a més informació." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." @@ -139,7 +139,7 @@ msgstr "Comentaris de la taula" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Columna" @@ -162,7 +162,7 @@ msgstr "Columna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipus" @@ -179,7 +179,7 @@ msgstr "Tipus" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nul" @@ -194,7 +194,7 @@ msgstr "Nul" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Defecte" @@ -236,9 +236,9 @@ msgstr "Comentaris" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "No" @@ -263,9 +263,9 @@ msgstr "No" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Si" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Taula" @@ -399,7 +399,7 @@ msgstr "Taules seguides" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de dades" @@ -407,17 +407,17 @@ msgstr "Base de dades" msgid "Last version" msgstr "Darrera versió" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Creat" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Actualitzat" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Estat" @@ -430,7 +430,7 @@ msgstr "Estat" msgid "Action" msgstr "Acció" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Mostra" @@ -446,11 +446,11 @@ msgstr "Esborra les dades de seguiment per aquesta taula" msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "actiu" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "no actiu" @@ -458,11 +458,11 @@ msgstr "no actiu" msgid "Versions" msgstr "Versions" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Informe de seguiment" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Instantània de l'estructura" @@ -620,11 +620,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Probablement has triat d'enviar un arxiu que és massa gran. Consulta la " -"%sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu que és massa gran. Consulta la %" +"sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -671,7 +671,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a Consulta desada" @@ -698,7 +698,7 @@ msgstr "" "indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que " "incrementeu els límits de temps de php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -929,7 +929,7 @@ msgstr "" "Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s " "per a possibles assumptes." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." @@ -938,7 +938,7 @@ msgstr "Instrucció \"DROP DATABASE\" desactivada." msgid "Do you really want to execute \"%s\"?" msgstr "Realment vols fer \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt de DESTRUIR completament una base de dades!" @@ -1022,8 +1022,8 @@ msgstr "Recarrega els permisos" msgid "Removing Selected Users" msgstr "Treu els usuaris triats" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Tanca" @@ -1151,13 +1151,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1196,7 +1196,7 @@ msgid "Traffic" msgstr "Tràfic" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Configuració" @@ -1216,13 +1216,14 @@ msgstr "Afegeix gràfic a a la graella" msgid "Please add at least one variable to the series" msgstr "Afegeix al menys una variable a la serie" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Res" @@ -1322,7 +1323,7 @@ msgstr "Canviar configuracions" msgid "Current settings" msgstr "Configuracions actuals" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Títol del gràfic" @@ -1411,7 +1412,7 @@ msgstr "Explicar sortida" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Temps" @@ -1509,7 +1510,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1566,7 +1567,7 @@ msgid "Cancel" msgstr "Cancel.lar" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Carregar" @@ -1715,7 +1716,7 @@ msgstr "Amagar quadre de consultes" msgid "Show query box" msgstr "Mostrar quadre de consultes" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1728,7 +1729,7 @@ msgstr "Edita" msgid "No rows selected" msgstr "No s'han triat arxius" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1812,7 +1813,7 @@ msgstr "Contingut del punter de dades" msgid "Ignore" msgstr "Ignora" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Còpia" @@ -1828,7 +1829,7 @@ msgstr "Cadena de línies" msgid "Polygon" msgstr "Polígon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2316,33 +2317,33 @@ msgstr "per hora" msgid "per day" msgstr "per dia" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "No es pot llegir l'arxiu de configuració existent (%s)." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisos incorrectes a l'arxiu de configuració, no pot ser modificable per " "tothom!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Tamany de lletra" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascendent" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2496,14 +2497,14 @@ msgstr "Navega" msgid "Delete the matches for the %s table?" msgstr "Esborrar les coincidències per a la taula %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Esborra" @@ -2594,16 +2595,11 @@ msgstr "horitzontal (capçaleres rotades)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Capceleres cada %s files" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Classifica per la clau" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2630,90 +2626,90 @@ msgstr "Classifica per la clau" msgid "Options" msgstr "Opcions" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Textos parcials" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Textos sencers" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Clau relacional" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Columna relacional a mostrar" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Mostra continguts binaris" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostra el contingut binari com HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Amagar transformació del navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Text conegut" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Binari conegut" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Finalitzar" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Pot ser aproximat. Veieu [doc@faq3-11]PCF -FAQ- 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "en consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Mostrant registres" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2722,8 +2718,8 @@ msgstr "La consulta tarda %01.4f seg" msgid "With selected:" msgstr "Amb marca:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2734,45 +2730,45 @@ msgstr "Amb marca:" msgid "Check All" msgstr "Marcar-ho tot" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporta" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Crea una vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Imprimeix vista" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualitzar dades GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "No s'ha trobat l'enllaç" @@ -2851,38 +2847,38 @@ msgstr "No s'ha definit l'índex!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexos" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Única" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalitat" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Ordenació" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentari" @@ -2924,7 +2920,7 @@ msgstr "Vista" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estructura" @@ -3069,15 +3065,15 @@ msgstr[1] "%1$d files inserides." msgid "Error while creating PDF:" msgstr "Error creant PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "No es pot desar la taula" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Taules recents" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "No hi ha taules recents" @@ -3323,7 +3319,7 @@ msgid "Maximum rows to plot" msgstr "Màxim nombre de files a dibuixar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Navega valors externs" @@ -3436,20 +3432,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Un nombre de coma flotant petit, els valors permesos són de -3.402823466E+38 " "a -1.175494351E-38, 0, i de 1.175494351E-38 a 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Un nombre de coma flotant de doble precisió, els valors permesos són de " -"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0, i de " +"Un nombre de coma flotant de doble precisió, els valors permesos són de -" +"1.7976931348623157E+308 a -2.2250738585072014E-308, 0, i de " "2.2250738585072014E-308 a 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3733,7 +3729,7 @@ msgstr "Una enumeració, triada de la llista de valors definits" msgid "Max: %s%s" msgstr "Màx: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3794,7 +3790,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línia" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfils" @@ -4263,8 +4259,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Defineix quin tipus de control d'edició es farà servir per a columnes CHAR i " -"VARCHAR; [kbd]input[/kbd] - permet limitar el tamany de l'entrada, " -"[kbd]textarea[/kbd] - permet varies línies dintre dels camps" +"VARCHAR; [kbd]input[/kbd] - permet limitar el tamany de l'entrada, [kbd]" +"textarea[/kbd] - permet varies línies dintre dels camps" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4272,8 +4268,8 @@ msgstr "Edició de columnes CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Fer servir l'editor SQL ([a@http://codemirror.net/]CodeMirror[/a]) amb " "resaltat de sintaxi i números de línia" @@ -4823,9 +4819,8 @@ msgstr "Títols de pàgina" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Especifica el títol del navegador. Consulta [doc@cfg_TitleTable]la " "documentació[/doc] per a cadenes màgiques que poden usar-se per obtenir " @@ -4891,8 +4886,8 @@ msgid "" "documentation" msgstr "" "Configura la base de dades phpMyAdmin per tenir accés a característiques " -"adiccionals, consulta [doc@linked-tables]infraestructura de taules " -"enllaçades[/doc] a la documentació" +"adiccionals, consulta [doc@linked-tables]infraestructura de taules enllaçades" +"[/doc] a la documentació" #: libraries/config/messages.inc.php:204 msgid "Changes tracking" @@ -5628,8 +5623,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]consultes desades[/a], suggerit: [kbd]pma__bookmark[/kbd]" +"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:377 msgid "Bookmark table" @@ -5637,8 +5632,8 @@ msgstr "Taula de consultes desades" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Deixa en blanc per no usar comentaris de columna o tipus mime, suggerit: " "[kbd]pma__column_info[/kbd]" @@ -5715,8 +5710,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Deixa en blanc per desactivar el suport del Dissenyador, suggerit: " -"[kbd]pma__designer_coords[/kbd]" +"Deixa en blanc per desactivar el suport del Dissenyador, suggerit: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5822,8 +5817,8 @@ msgstr "Contrasenya autenticació config" 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]" +"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5867,11 +5862,11 @@ msgstr "Taula usada recentment" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/" -"relation]enllaços de relacions[/a], suggerit: [kbd]pma__relation[/kbd]" +"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:421 msgid "Relation table" @@ -5887,8 +5882,8 @@ msgstr "Ordre SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus " "d'autenticació[/a] per veure exemples" @@ -5924,8 +5919,8 @@ 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]" +"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6007,8 +6002,8 @@ msgstr "Instruccions a seguir" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Deixa en blanc per desactivar el suport de seguiment de consultes SQL, " "suggerit: [kbd]pma__tracking[/kbd]" @@ -6031,8 +6026,8 @@ msgstr "Crear versions automàticament" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Deixa en blanc per no desar les preferències de l'usuari en base de dades, " "suggerit: [kbd]pma__userconfig[/kbd]" @@ -6060,8 +6055,8 @@ msgstr "Nom explicatiu d'aquest servidor" #: libraries/config/messages.inc.php:455 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)"" +"Si a un usuari se l'hauria de mostrar el botó "mostrar totes (les files)" +""" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" @@ -6248,8 +6243,8 @@ msgstr "" "Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nom d'usuari" @@ -6315,8 +6310,8 @@ msgid "" msgstr "" "Entra els proxies com [kbd]IP: capçaleta HTTP confiable[/kbd]. El següent " "exemple mostra cóm phpMyAdmin hauria de validar la capçalera " -"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]" +"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:512 msgid "List of trusted proxies for IP allow/deny" @@ -6675,7 +6670,7 @@ msgstr "Base(s) de dades:" msgid "Table(s):" msgstr "Taula(es):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Files:" @@ -6724,12 +6719,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: " -"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" +"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:341 @@ -7285,8 +7280,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -7304,7 +7299,7 @@ msgid "No data found for GIS visualization." msgstr "No s'han trobat dades per a visualització GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." @@ -7426,11 +7421,11 @@ msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -7481,7 +7476,7 @@ msgstr "Afegir prefix de taula" msgid "Add prefix" msgstr "Afegir prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Realment vols executar la següent consulta?" @@ -7811,17 +7806,17 @@ msgid "Drop the database (DROP)" msgstr "Esborra la base de dades (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Només l'estructura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estructura i dades" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Només dades" @@ -7984,8 +7979,8 @@ msgstr "Benvingut a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -8245,7 +8240,7 @@ msgstr "Posa els noms de columnes a la primera fila" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8253,7 +8248,7 @@ msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8271,7 +8266,7 @@ msgstr "Versió de PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8474,8 +8469,8 @@ msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" -"La primera línia de l'arxiu conté els noms de les columnes de la taula " -"(si no es marca això, la primera línia formarà part de les dades)" +"La primera línia de l'arxiu conté els noms de les columnes de la taula " +"(si no es marca això, la primera línia formarà part de les dades)" #: libraries/plugins/import/ImportCsv.class.php:72 msgid "" @@ -9413,7 +9408,7 @@ msgstr "Atributs" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9578,7 +9573,7 @@ msgid "Library" msgstr "Llibreria" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versió" @@ -10039,8 +10034,8 @@ msgstr "Vista global d'usuaris" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " @@ -10055,63 +10050,289 @@ msgstr "No s'ha trobat l'usuari triat a la taula de permisos." msgid "You have added a new user." msgstr "Has afegit un usuari nou." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segon" +msgstr[1] "%d segons" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuts" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estadístiques del registre" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Rang de temps seleccionat:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Només recuperar instruccions SELECT, INSERT, UPDATE i DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Elimina dades variables en les instruccions INSERT per a una millor agrupació" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Tria de quin registre vols que es generin les estadístiques." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Els resultats s'agrupen pel text de la consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analitzador de consultes" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instruccions de Monitorització" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"El monitor de phpMyAdmin pot ajudar a optimitzar la configuració del " +"servidor i localitzar a temps les consultes intensives. En aquest darrer cas " +"s'haurà d'establir log_output a 'TABLE' i tenir el slow_query_log o " +"general_log habilitat. Noteu però, que la general_log produeix una gran " +"quantitat de dades i augmenta la càrrega del servidor fins en un 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Lamentablement, el teu servidor de bases de dades no és compatible amb el " +"registre a la taula, que és un requisit per a l'anàlisi dels registres de " +"base de dades amb phpMyAdmin. El registre a la taula se suporta a partir de " +"MySQL 5.1.6 i següents. Pots seguir utilitzant però les funcions de gràfics " +"de servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilitzant el monitor:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"El teu navegador actualitzarà tots els gràfics que es mostren en un interval " +"regular. Pots afegir gràfics i canviar la freqüència d'actualització a la " +"secció 'Configuració', o eliminar qualsevol gràfic amb la icona d'engranatge " +"en cada gràfic corresponent." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Per mostrar les consultes dels registres, selecciona l'interval de temps " +"rellevant en qualsevol gràfic mantenint premut el botó esquerre del ratolí i " +"arrosegant sobre el gràfic. Un cop confirmat, això carregarà una taula de " +"consultes agrupades, on podràs clicar en qualsevol de les instruccions " +"SELECT per analitzar-la amb més detall." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Tingueu en compte:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activar el general_log pot augmentar la càrrega del servidor en un 5-15%. " +"També tingues en compte que la generació d'estadístiques dels registres és " +"una tasca de càrrega intensiva, pel que és aconsellable seleccionar només un " +"lapse de temps petit i per desactivar el general_log i buidar la taula una " +"vegada que el monitoratge no es requereixi més." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Afegir gràfic" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gràfic predefinit" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variable(s) d'estat" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Seleccionar series:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Comunment monitoritzat" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "o escriu el nom de variable:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Mostra com a valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar un divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Afegir unitat als valors" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Afegir aquesta serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Buidar sèrie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series al gràfic:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Començar monitorització" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruccions/configuració" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Reorganització acabada/edició de gràfics" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Activa resaltat" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Velocitat de refresc" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Columnes del gràfic" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Ordenació del gràfic" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " +"navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Restaura el valor per defecte" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultat SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generat per" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Tamany de creixement de l'arxiu de dades" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Altre" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Inici" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Temps total:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Temps" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Tanca" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Temps" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Desa aquesta consulta SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiqueta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Deixa accedir a cada usuari a aquesta consulta desada" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10132,10 +10353,6 @@ msgstr "Neteja" msgid "Bookmark this SQL query:" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Deixa accedir a cada usuari a aquesta consulta desada" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Reemplaça una consulta desada ja existent amb el mateix nom" @@ -10226,8 +10443,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " -"%sdocumentació%s." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" +"sdocumentació%s." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10276,7 +10493,7 @@ msgstr "Comprova taules desfragmentades" msgid "Sort" msgstr "Classificació" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Cap" @@ -10432,7 +10649,7 @@ msgstr "Efectiu" msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Error de consulta" @@ -10590,7 +10807,7 @@ msgstr "Error en arxiu ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: Només es pot accedir a la navegació mitjançant AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" @@ -10646,7 +10863,7 @@ msgstr "Canviar petit/gran" msgid "Toggle relation lines" msgstr "Canviar línies de relació" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/Exporta coordenades per a esquema PDF" @@ -10706,43 +10923,43 @@ msgstr "Agrega" msgid "Active options" msgstr "Opcions actives" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "S'ha creat una pàgina" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Ha fallat la creació de pàgina" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "pàgina" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar des de la pàgina seleccionada" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exporta a la pàgina seleccionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crea una pàgina i exporta en ella" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nou nom de pàgina: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Exporta/Importa a escala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomanat" @@ -10772,7 +10989,7 @@ msgstr "Afegida relació interna" msgid "Relation deleted" msgstr "Relació esborrada" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Error desant coordenades per al Dissenyador." @@ -11223,217 +11440,6 @@ msgstr "" "al mateix temps, observar o mesurar la teva base de dades, i desfer el canvi " "si no hi ha una millora clarament mesurable." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instruccions de Monitorització" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"El monitor de phpMyAdmin pot ajudar a optimitzar la configuració del " -"servidor i localitzar a temps les consultes intensives. En aquest darrer cas " -"s'haurà d'establir log_output a 'TABLE' i tenir el slow_query_log o " -"general_log habilitat. Noteu però, que la general_log produeix una gran " -"quantitat de dades i augmenta la càrrega del servidor fins en un 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Lamentablement, el teu servidor de bases de dades no és compatible amb el " -"registre a la taula, que és un requisit per a l'anàlisi dels registres de " -"base de dades amb phpMyAdmin. El registre a la taula se suporta a partir de " -"MySQL 5.1.6 i següents. Pots seguir utilitzant però les funcions de gràfics " -"de servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilitzant el monitor:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"El teu navegador actualitzarà tots els gràfics que es mostren en un interval " -"regular. Pots afegir gràfics i canviar la freqüència d'actualització a la " -"secció 'Configuració', o eliminar qualsevol gràfic amb la icona d'engranatge " -"en cada gràfic corresponent." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Per mostrar les consultes dels registres, selecciona l'interval de temps " -"rellevant en qualsevol gràfic mantenint premut el botó esquerre del ratolí i " -"arrosegant sobre el gràfic. Un cop confirmat, això carregarà una taula de " -"consultes agrupades, on podràs clicar en qualsevol de les instruccions " -"SELECT per analitzar-la amb més detall." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Tingueu en compte:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activar el general_log pot augmentar la càrrega del servidor en un 5-15%. " -"També tingues en compte que la generació d'estadístiques dels registres és " -"una tasca de càrrega intensiva, pel que és aconsellable seleccionar només un " -"lapse de temps petit i per desactivar el general_log i buidar la taula una " -"vegada que el monitoratge no es requereixi més." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Afegir gràfic" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Gràfic predefinit" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variable(s) d'estat" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Seleccionar series:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Comunment monitoritzat" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "o escriu el nom de variable:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Mostra com a valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar un divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Afegir unitat als valors" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Afegir aquesta serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Buidar sèrie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series al gràfic:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estadístiques del registre" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Rang de temps seleccionat:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Només recuperar instruccions SELECT, INSERT, UPDATE i DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Elimina dades variables en les instruccions INSERT per a una millor agrupació" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Tria de quin registre vols que es generin les estadístiques." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Els resultats s'agrupen pel text de la consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analitzador de consultes" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segon" -msgstr[1] "%d segons" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuts" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Començar monitorització" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruccions/configuració" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Reorganització acabada/edició de gràfics" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Activa resaltat" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Velocitat de refresc" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Columnes del gràfic" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Ordenació del gràfic" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " -"navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Restaura el valor per defecte" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12227,9 +12233,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Si us plau, crea una carpeta modificable pel servidor web [em]config[/em] al " -"directori principal de phpMyAdmin tal com s'explica a la " -"[doc@setup_script]documentació[/doc]. En cas contrari només podràs " -"descarregar o mostrar." +"directori principal de phpMyAdmin tal com s'explica a la [doc@setup_script]" +"documentació[/doc]. En cas contrari només podràs descarregar o mostrar." #: setup/frames/index.inc.php:60 msgid "" @@ -12468,8 +12473,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store" -"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " +"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%" +"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " "igual a ell." #: setup/lib/index.lib.php:314 @@ -12491,14 +12496,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el " -"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el %" +"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12544,24 +12549,24 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials." msgid "Wrong data" msgstr "Dades incorrectes" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "No s'ha creat el marcador" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12573,21 +12578,11 @@ msgstr "" "Aquesta taula no conté una columna única. Els enllaços d'edició de graella, " "checkbox, Editar, Copiar i Esborrar enllaços no estàn disponibles." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Desa aquesta consulta SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiqueta" - #: tbl_chart.php:38 msgid "No data to display" msgstr "No hi ha dades per mostrar" @@ -12804,31 +12799,31 @@ msgstr "Tria la columna a mostrar" msgid "No column selected." msgstr "No s'han triat arxius" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguiment per la taula `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "S'ha creat la versió %1$s, activat el seguiment per %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivat el seguiment per %1$s a la versió %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "S'ha activat el seguiment de %1$s a la versió %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Declaracions SQL executades." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12836,113 +12831,113 @@ msgstr "" "Pots executar el bolcat mitjançant la creació i utilització d'una base de " "dades temporal. Si us plau, assegura't que tens els permisos per fer-ho." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comenta aquestes dues línies si no les necessites." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantània de la versió %s (codi SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Definició de seguiment de dades eliminat correctament" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "manipulació de seguiment de dades eliminat correctament" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Seguiment de declaracions" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s amb dates des de %2$s fins a %3$s per l'usuari %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Esborra les dades de seguiment de l'informe" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "No hi ha dades" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Declaració de definició de dades" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Declaració de manipulació de dades" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Bolcat SQL (descàrrega d'arxiu)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Bolcat SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Aquesta opció substituirà la taula i les dades contingudes." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Execució SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exporta com %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostra versions" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactiva el seguiment per %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desactiva ara" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activa el seguiment per %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activa ara" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crea versió %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Segueix aquestes declaracions de definició de dades:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Segueix aquestes declaracions de manipulació de dades:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crea versió" @@ -13350,8 +13345,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "La taxa actual de memòria lluire del cau de consultes respecte la mida total " "és de %s%%. Hauria de estar per sobre de 80%%" @@ -13509,8 +13504,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de totes les ordenacions causen taules temporals, aquest valor ha de " "ser inferior al 10%%." @@ -13919,8 +13914,8 @@ msgstr "" #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" -"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del " -"95%%" +"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del 95%" +"%" #: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" @@ -14292,6 +14287,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Capceleres cada %s files" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14586,9 +14584,9 @@ msgstr "{concurrent_insert} està establert a 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Quan s'estableix aixó a [kbd]anidat[/kbd], el àlies del nom de la taula " #~ "només es fa servir per a separar/anidar les taules segons la directiva " diff --git a/po/ckb.po b/po/ckb.po index 05b43f8910..5159cb4ba8 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-12-24 08:51+0200\n" "Last-Translator: karwan hidayat \n" "Language-Team: Kurdish Sorani \n" -"Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ckb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" @@ -51,7 +51,7 @@ msgid "Search:" msgstr "گەڕان" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -80,21 +80,21 @@ msgstr "گەڕان" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "بڕۆ" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "کلیلەناو" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "پێناسە" @@ -113,7 +113,7 @@ msgstr "" "پەڕگەی %s بوونی نییە لەسەر ئەم سیستەمە, تکایە سەردانی www.phpmyadmin.net بۆ " "زانیاری زۆرتر." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "بنکەی دراوەی %1$s درووستکرا." @@ -143,7 +143,7 @@ msgstr "تێبینیەکانی خشتە" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "ستون" @@ -166,7 +166,7 @@ msgstr "ستون" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "جۆر" @@ -183,7 +183,7 @@ msgstr "جۆر" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "بەتاڵ" @@ -198,7 +198,7 @@ msgstr "بەتاڵ" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "بنەڕەت" @@ -240,9 +240,9 @@ msgstr "بۆچوون" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "نەخێر" @@ -267,9 +267,9 @@ msgstr "نەخێر" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "بەڵێ" @@ -320,7 +320,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "خشتە" @@ -402,7 +402,7 @@ msgstr "شوێنکەوتەی خشتە" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "بنکەی دراو" @@ -410,17 +410,17 @@ msgstr "بنکەی دراو" msgid "Last version" msgstr "وەشانی کۆتا" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "دروستکراوە" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "بارکراوە" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "ڕەوش" @@ -433,7 +433,7 @@ msgstr "ڕەوش" msgid "Action" msgstr "کردار" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "پیشاندان" @@ -449,11 +449,11 @@ msgstr "سڕینەوە داتا شوێنکەوتووەکان لەم خشتەیە msgid "Drop" msgstr "فڕیدان" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "چالاک" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ناچالاکە" @@ -461,11 +461,11 @@ msgstr "ناچالاکە" msgid "Versions" msgstr "وەشانەکان" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "ڕاپۆرتە شوێنکەتووەکان" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "وێنەی پێکهاتە" @@ -624,11 +624,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"لەوانەیە تۆ هەوڵت دابێت فایلێک بە قەبارەیەکی زۆر بار بکەی. تکایە سەردانی " -"%sبەڵگەسازی%s بکە بۆ چارەکردنی ئەم سنوردار کردنە." +"لەوانەیە تۆ هەوڵت دابێت فایلێک بە قەبارەیەکی زۆر بار بکەی. تکایە سەردانی %" +"sبەڵگەسازی%s بکە بۆ چارەکردنی ئەم سنوردار کردنە." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -671,7 +671,7 @@ msgstr "ناکرێت فایلەکانی نوسە بگۆڕدرێن بە بێ نو msgid "Could not load import plugins, please check your installation!" msgstr "هەڵە لە بارکردنی پێوەکراەکان, تکایە فۆناغەکانی دامەزراندن بپشکنن!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "شوێندۆز %s دروستکرا" @@ -699,7 +699,7 @@ msgstr "" "ISO OR RFC3066 LIKE ZH-CN. ALMOST ALL LANGUAGES SUPPORTED BUT SOME MAY HAVE " "نیە CONTENT" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -895,7 +895,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "دەستەواژەکانی \"سڕینەوەی بنکەی زانیاری\" ناچالاککراوە." @@ -904,7 +904,7 @@ msgstr "دەستەواژەکانی \"سڕینەوەی بنکەی زانیاری\ msgid "Do you really want to execute \"%s\"?" msgstr "ئایا تۆ دڵنیایت لە جێبەجێکردنی \"%s\"؟" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "تۆ خەریکی سڕینەوەی تەواوی بنکە زانیاریەکەیت!" @@ -989,8 +989,8 @@ msgstr "هێنانەوەی تایبەتمەندیەکان" msgid "Removing Selected Users" msgstr "سڕینەوەی بەکارهێنەرە دەست نیشانکراوەکان" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "داخستن" @@ -1113,13 +1113,13 @@ msgstr "بایت" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "کیلۆبایت" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "مێگابایت" @@ -1158,7 +1158,7 @@ msgid "Traffic" msgstr "هاتووچوو" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "ڕێکخستنەکان" @@ -1178,13 +1178,14 @@ msgstr "زیادکردنی هێلکاری بۆ تۆڕ" msgid "Please add at least one variable to the series" msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زیاد بکە" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "هیچ" @@ -1279,7 +1280,7 @@ msgstr "گۆڕینی ڕێکخستنەکان" msgid "Current settings" msgstr "ڕێکخستنەکانی هەنووکە" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "ناونیشانی هێلکاری" @@ -1359,7 +1360,7 @@ msgstr "ڕوونکردنەوەی دەرەنجام" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "کات" @@ -1450,7 +1451,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "هێنان" @@ -1507,7 +1508,7 @@ msgid "Cancel" msgstr "لابردن" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "ئامادەکردن" @@ -1657,7 +1658,7 @@ msgstr "شاردنەوەی سندوقی داواکاری" msgid "Show query box" msgstr "پێشاندانی سندوقی داواکاری" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1670,7 +1671,7 @@ msgstr "چاکردن" msgid "No rows selected" msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1752,7 +1753,7 @@ msgstr "ناوەڕۆکی زانیاری خاڵ" msgid "Ignore" msgstr "فەرامۆشکردن" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "لەبەرگرتنەوە" @@ -1768,7 +1769,7 @@ msgstr "ڕیزبه‌ندی هێڵی" msgid "Polygon" msgstr "فرە گۆشە" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "ئەندازەزانی" @@ -2243,31 +2244,31 @@ msgstr "لە کاتژمێرێکدا" msgid "per day" msgstr "لە ڕؤژێکدا" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "قەبارەی فۆنت" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "لە سەرەتاوە بۆ کۆتایی" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2419,14 +2420,14 @@ msgstr "گەڕۆک" msgid "Delete the matches for the %s table?" msgstr "سڕینەوەی دووبارەکان بۆ خشتەی %s؟" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "سڕینەوە" @@ -2518,16 +2519,11 @@ msgstr "ئاسۆیی (ناونیشانی سوڕاو)" msgid "vertical" msgstr "ستونی" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "ناونیشانەکانی هەموو %s ڕیزەکان" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "ڕیزکردنی بە پێی کلیل" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2554,91 +2550,91 @@ msgstr "ڕیزکردنی بە پێی کلیل" msgid "Options" msgstr "هەڵبژاردنەکان" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "تێکستە لاوەکیەکان" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "تێکستە تەواوەکان" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "ڕیزەکە سڕایەوە" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "ڕایگرە" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "لە داواکاری" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی " -"%sبەڵگەسازی%s بکە ." +"لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی %" +"sبەڵگەسازی%s بکە ." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "ڕیزە پێشاندراوەکان" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "سەرجەم" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "داواکاریەکە %01.4f چرکەی خایاند" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2647,8 +2643,8 @@ msgstr "داواکاریەکە %01.4f چرکەی خایاند" msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2659,45 +2655,45 @@ msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" msgid "Check All" msgstr "هەڵبژاردنی هەموو" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "هەناردن" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "کردارەکانی ئەنجامی داواکاری" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "پێشاندان بۆ چاپکردن" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "پیشاندان بۆ چاپکردن (لەگەڵ تێکستە تەواوەکان)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "پێشاندانی هێلکاری" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "بەستەر نەدۆزرایەوە" @@ -2772,38 +2768,38 @@ msgstr "هیچ نیشاندەرێک پێناسە نەکراوە‌!‌" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "نیشاندەرەکان" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "بێهاوتا" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "ڕێکخستن" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "لێدوان" @@ -2843,7 +2839,7 @@ msgstr "نیشاندان" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "پێکهاتە" @@ -2988,15 +2984,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "نەتوانرا خشتە تازەکە پاشەکەوت بکرێت" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "خشتە تازەکان" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "هیچ خشتەیەکی تازە نیە" @@ -3235,7 +3231,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3332,14 +3328,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3575,7 +3571,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3636,7 +3632,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "هەمان هێڵ" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4097,8 +4093,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4621,9 +4617,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5356,8 +5351,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5550,8 +5545,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5568,8 +5563,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5666,8 +5661,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5686,8 +5681,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5874,8 +5869,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "ناوی بەکارهێنەر" @@ -6267,7 +6262,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6316,8 +6311,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6808,8 +6803,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6825,7 +6820,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6941,11 +6936,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6996,7 +6991,7 @@ msgstr "گۆڕینی پێشگری خشتە" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7327,17 +7322,17 @@ msgid "Drop the database (DROP)" msgstr "سڕینەوەی بنکەی دراوە (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "تەنیا بنچینە" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "بنچینە و زانیاری" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "تەنیا زانیاری" @@ -7500,8 +7495,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7747,13 +7742,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7771,7 +7766,7 @@ msgstr "پێوەکراوەکانی php" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8813,7 +8808,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8976,7 +8971,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9419,8 +9414,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9431,60 +9426,253 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "دروستکردن" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "هیتر" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "شەممە" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "هەموو کاتەکان:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "کات" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "داخستن" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "کات" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9503,10 +9691,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9632,7 +9816,7 @@ msgstr "پشکنین بۆ ئەو خشتانە بکەن کە ژوورسەریان msgid "Sort" msgstr "ڕیزکردن" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9788,7 +9972,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9925,7 +10109,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9981,7 +10165,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10041,39 +10225,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10101,7 +10285,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10505,186 +10689,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11565,8 +11569,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11607,45 +11611,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "شوێندۆز %s دروستکرا" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -11867,143 +11863,143 @@ msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشان msgid "No column selected." msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12360,8 +12356,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12479,8 +12475,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13112,6 +13108,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Headers every %s rows" +#~ msgstr "ناونیشانەکانی هەموو %s ڕیزەکان" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/cs.po b/po/cs.po index 4c52afb5e1..ef884c9d0c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-12 09:37+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Vyhledat:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "Vyhledat:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Proveď" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Název klíče" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Popis" @@ -108,7 +108,7 @@ msgstr "" "Soubor %s nebyl nalezen, více informací naleznete na stránce www.phpmyadmin." "net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." @@ -136,7 +136,7 @@ msgstr "Komentář k tabulce:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Pole" @@ -159,7 +159,7 @@ msgstr "Pole" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -176,7 +176,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulový" @@ -191,7 +191,7 @@ msgstr "Nulový" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Výchozí" @@ -233,9 +233,9 @@ msgstr "Komentáře" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -260,9 +260,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ano" @@ -314,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabulka" @@ -391,7 +391,7 @@ msgstr "Sledované tabulky" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databáze" @@ -399,17 +399,17 @@ msgstr "Databáze" msgid "Last version" msgstr "Poslední verze" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Vytvořeno" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Aktualizováno" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stav" @@ -422,7 +422,7 @@ msgstr "Stav" msgid "Action" msgstr "Operace" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Zobrazit" @@ -438,11 +438,11 @@ msgstr "Odstranit všechny informace o sledování této tabulky" msgid "Drop" msgstr "Odstranit" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "zapnuté" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "není zapnuté" @@ -450,11 +450,11 @@ msgstr "není zapnuté" msgid "Versions" msgstr "Verze" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Informace o sledování" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snímek struktury" @@ -600,8 +600,8 @@ msgstr "Z funkcí zvolte „GeomFromText“ a vložte níže uvedený text jako #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -649,7 +649,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" @@ -676,7 +676,7 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -883,7 +883,7 @@ msgstr "" "Server používá Suhosin. Prosím podívejte se do %sdokumentace%s pro popis " "problémů, které tím mohou být způsobeny." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." @@ -892,7 +892,7 @@ msgstr "Příkaz „DROP DATABASE“ je vypnutý." msgid "Do you really want to execute \"%s\"?" msgstr "Opravdu si přejete provést „%s“?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -976,8 +976,8 @@ msgstr "Načítám oprávnění" msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Ukončit" @@ -1103,13 +1103,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1148,7 +1148,7 @@ msgid "Traffic" msgstr "Provoz" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Nastavení" @@ -1168,13 +1168,14 @@ msgstr "Přidat graf do mřížky" msgid "Please add at least one variable to the series" msgstr "Prosím přidejte do série alespoň jednu hodnotu" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Žádná" @@ -1273,7 +1274,7 @@ msgstr "Změnit nastavení" msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Název grafu" @@ -1362,7 +1363,7 @@ msgstr "Vysvětlení dotazu" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Čas" @@ -1459,7 +1460,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1516,7 +1517,7 @@ msgid "Cancel" msgstr "Zrušit" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Nahrávám" @@ -1664,7 +1665,7 @@ msgstr "Skrýt pole pro dotaz" msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1677,7 +1678,7 @@ msgstr "Upravit" msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1759,7 +1760,7 @@ msgstr "Obsah datového bodu" msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopírovat" @@ -1775,7 +1776,7 @@ msgstr "Linka" msgid "Polygon" msgstr "Mnohoúhelník" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrie" @@ -2256,33 +2257,33 @@ msgstr "za hodinu" msgid "per day" msgstr "za den" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Nepodařilo se přečíst existující konfigurační soubor (%s)." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný " "pro všechny!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Velikost písma" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Vzestupně" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2426,14 +2427,14 @@ msgstr "Projít" msgid "Delete the matches for the %s table?" msgstr "Odstranit nalezené záznamy z tabulky %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Odstranit" @@ -2520,16 +2521,11 @@ msgstr "vodorovném (otočené hlavičky)" msgid "vertical" msgstr "svislém" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Záhlaví opakovat každých %s řádek" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Seřadit podle klíče" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2556,90 +2552,90 @@ msgstr "Seřadit podle klíče" msgid "Options" msgstr "Nastavení" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Zkrácené texty" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Celé texty" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relační klíč" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Pole pro zobrazení v relacích" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Zobrazit binární obsah" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Zobrazit binární obsah šestnáctkově (HEX)" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Nepoužít při prohlížení transformace" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Text (WKT)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Binární (WKB)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Ukončit" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "v dotazu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "celkem" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Dotaz trval %01.4f sekund" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2648,8 +2644,8 @@ msgstr "Dotaz trval %01.4f sekund" msgid "With selected:" msgstr "Zaškrtnuté:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2660,45 +2656,45 @@ msgstr "Zaškrtnuté:" msgid "Check All" msgstr "Zaškrtnout vše" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Vytvořit pohled" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Náhled pro tisk" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Zobrazit data GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -2777,38 +2773,38 @@ msgstr "Není definován žádný klíč!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Klíče" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Mohutnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Porovnávání" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentář" @@ -2850,7 +2846,7 @@ msgstr "Pohled" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -2998,15 +2994,15 @@ msgstr[2] "Vloženo %1$d řádek." msgid "Error while creating PDF:" msgstr "Chyba při vytváření PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nepodařilo se uložit nedávnou tabulku" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Nedávné tabulky" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nebyly nalezeny žádné nedávné tabulky" @@ -3245,7 +3241,7 @@ msgid "Maximum rows to plot" msgstr "Nejvyšší počet vykreslených řádků" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" @@ -3354,20 +3350,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -3.402823466E" "+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od " -"-1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od " +"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -" +"1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od " "2.2250738585072014E-308 do 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3634,7 +3630,7 @@ msgstr "Výčtový typ, umožňující výběr ze zadaných hodnot" msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL dotaz:" @@ -3693,7 +3689,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upravit zde" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilování" @@ -3849,8 +3845,8 @@ msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -"V konfiguračním souboru musí být nastaven parametr " -"[code]$cfg['PmaAbsoluteUri'][/code]!" +"V konfiguračním souboru musí být nastaven parametr [code]$cfg" +"['PmaAbsoluteUri'][/code]!" #: libraries/common.inc.php:634 #, php-format @@ -4111,8 +4107,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Tajné heslo používané pro šifrování cookies při přihlašování pomocí " -"[kbd]cookie[/kbd]" +"Tajné heslo používané pro šifrování cookies při přihlašování pomocí [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4153,8 +4149,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Definuje, který typ ovládacích prvků má být použit při úpravách polí typu " -"CHAR a VARCHAR; [kbd]input[/kbd] - umožňuje omezit délku vstupu, " -"[kbd]textarea[/kbd] - umožní použít odřádkování" +"CHAR a VARCHAR; [kbd]input[/kbd] - umožňuje omezit délku vstupu, [kbd]" +"textarea[/kbd] - umožní použít odřádkování" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4162,8 +4158,8 @@ msgstr "Úprava polí typu CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Použít uživatelsky přívětivý editor pro úpravu SQL dotazů ([a@http://" "codemirror.net/]CodeMirror[/a]) se zvýrazněním syntaxe a čísly řádek" @@ -4697,9 +4693,8 @@ msgstr "Jména stránek" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Zadejte titulek který zobrazí prohlížeč. V [doc@cfg_TitleTable]dokumentaci[/" "doc] naleznete jaké proměnné můžete použít." @@ -5496,8 +5491,8 @@ msgstr "Tabulka záložek" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Nechte prázdné pro žádné komentáře či mime typy polí, výchozí nastavení: " "[kbd]pma__column_info[/kbd]" @@ -5568,8 +5563,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Nechte prázdné pro vypnutí návrháře, výchozí nastavení: " -"[kbd]pma__designer_coords[/kbd]" +"Nechte prázdné pro vypnutí návrháře, výchozí nastavení: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5672,8 +5667,8 @@ msgstr "Heslo pro přihlašování config" 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]" +"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" +"pma__table_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5687,8 +5682,8 @@ msgid "" msgstr "" "Databáze používaná pro relace, záložky a PDF stránky. Více informací " "naleznete na [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Pokud " -"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: " -"[kbd]phpmyadmin[/kbd]" +"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5717,8 +5712,8 @@ msgstr "Naposledy použité tabulky" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/" "relation]relace[/a], výchozí nastavení: [kbd]pma__relation[/kbd]" @@ -5737,11 +5732,11 @@ msgstr "Příkaz SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/" -"auth_types#signon]authentication types[/a]" +"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"authentication types[/a]" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5773,8 +5768,8 @@ 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]" +"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5850,8 +5845,8 @@ msgstr "Sledované příkazy" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, výchozí " "nastavení: [kbd]pma__tracking[/kbd]" @@ -5873,8 +5868,8 @@ msgstr "Automaticky vytvářet verze" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, " "výchozí nastavení: [kbd]pma__userconfig[/kbd]" @@ -5999,8 +5994,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6079,11 +6074,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije " -"[kbd]anonymous[/kbd])" +"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]" +"anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Uživatel" @@ -6493,7 +6488,7 @@ msgstr "Databáze:" msgid "Table(s):" msgstr "Tabulky:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Řádky:" @@ -6542,8 +6537,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -7088,8 +7083,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -7107,7 +7102,7 @@ msgid "No data found for GIS visualization." msgstr "Nebyla nalezena žádná data zobrazení GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." @@ -7225,11 +7220,11 @@ msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -7274,7 +7269,7 @@ msgstr "Přidat tabulce předponu:" msgid "Add prefix" msgstr "Přidat předponu" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Opravdu si přejete vykonat následující příkaz?" @@ -7602,17 +7597,17 @@ msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Pouze strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strukturu a data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Jen data" @@ -7773,8 +7768,8 @@ msgstr "Vítejte v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -8024,13 +8019,13 @@ msgstr "Přidat jména polí na první řádek:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Počítač:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Vytvořeno:" @@ -8044,7 +8039,7 @@ msgstr "Verze PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Databáze:" @@ -9159,7 +9154,7 @@ msgstr "Vlastnosti" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Další" @@ -9322,7 +9317,7 @@ msgid "Library" msgstr "Knihovna" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verze" @@ -9777,8 +9772,8 @@ msgstr "Přehled uživatelů" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -9793,46 +9788,262 @@ msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." msgid "You have added a new user." msgstr "Uživatel byl přidán." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundy" +msgstr[2] "%d sekund" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuta" +msgstr[1] "%d minuty" +msgstr[2] "%d minut" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistiky záznamů" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Zvolený časový rozsah:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Před sloučením odstranit proměnná data v příkazech INSERT" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Zvolte ze kterého záznamu si přejete vygenerovat statistiku." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Výsledky jsou sloučeny podle textu dotazu." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analýza dotazu" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrukce monitoru" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Monitor phpMyAdmina vám může pomoci s vyladěním nastavení serveru a nalézt " +"náročné dotazy. Pro porovnávání dotazů budete potřebovat mít nastavený " +"log_output na 'TABLE' a mít povolené záznam pomalých dotazů nebo všech " +"dotazů. Zaznamenání všech dotazů ale může zvýšit zatížení serveru až o 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Váš databázový server bohužel nepodporuje záznam dotazů do tabulky, které " +"phpMyAdmin potřebuje pro analýzu databázových záznam. Tato vlastnost je " +"podporována v MySQL 5.1.6 a novějších. I bez této podpory však můžete použít " +"zobrazování grafů s informacemi o serveru." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Používání monitoru:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Váš prohlížeč bude graf obnovovat v pravidelných intervalech. V nastaveních " +"můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " +"odstranit grafy." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Pro zobrazení dotazů ze záznamu zvolte časové období, které vás zajímá, " +"podržením levého tlačítka myši a pohybem přes graf. Po potvrzení bude " +"nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " +"analýze." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Poznámka:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Zapnutí záznamu dotazů může zvýšit zatížení serveru o 5-15%. Výpočet " +"statistik z těchto záznamů je také výpočetně náročný, proto doporučujeme " +"vybírat krátké časové období a záznam vypnout poté co již monitorování " +"nebudete potřebovat." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Přidat graf" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Předdefinované grafy" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Stavové proměnné" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vyberte série:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Obvykle monitorované" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "nebo zadejte jméno proměnné:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Zobrazit jako rozdíl" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Vynásobit" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Zobrazit hodnoty s jednotkou" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Přidat tuto sérii" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Odstranit série" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Série v grafu:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Spustit monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Návod/Nastavení" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Ukončit přesouvání grafů" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Povolit přesouvání grafů" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Obnovovací frekvence" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Sloupce grafu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Uspořádání grafů" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Uspořádání grafů je uloženo ve vašem prohlížeči. Pokud máte komplikovanější " +"nastavení, můžete ho chtít exportovat a zálohovat." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Obnovit na výchozí hodnotu" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Výsledek SQL dotazu" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Vytvořil:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Podrobné profilování" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Pořadí" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Stav" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Souhrn podle stavů" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Celkový čas" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% času" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Volání" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø čas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Přidat tento SQL dotaz do oblíbených" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Název:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9851,10 +10062,6 @@ msgstr "Vyčistit" msgid "Bookmark this SQL query:" msgstr "Přidat tento SQL dotaz do oblíbených:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Přepsat existující oblíbený dotaz stejného jména" @@ -9993,7 +10200,7 @@ msgstr "Zaškrtnout neoptimální" msgid "Sort" msgstr "Řadit" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Žádná" @@ -10147,7 +10354,7 @@ msgstr "Efektivní" msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Chyba dotazu" @@ -10190,8 +10397,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " -"%spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" +"spopisy transformací%s" #: libraries/tbl_columns_definition_form.inc.php:171 msgid "Transformation options" @@ -10298,7 +10505,7 @@ msgstr "Chyba v ZIP archívu:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Chyba: Navigace je přístupná jen přes AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Změny byly uloženy" @@ -10354,7 +10561,7 @@ msgstr "Přepnout malé/velké" msgid "Toggle relation lines" msgstr "Přepnout zobrazení relací" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export souřadnic pro PDF schéma" @@ -10412,39 +10619,39 @@ msgstr "Sloučit" msgid "Active options" msgstr "Zapnuté parametry" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Stránka byla vytvořena" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Vytvoření stránky selhalo" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Stránka:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importovat ze zvolené stránky" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportovat na zvolenou stránku" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Vytvořit novou stránku a exportovat na ní" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Název nové stránky: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exportovat/Importovat v měřítku:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "doporučené" @@ -10472,7 +10679,7 @@ msgstr "Interní relace vytvořena" msgid "Relation deleted" msgstr "Relace smazána" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Chyba při ukládání souřadnic pro Návrháře." @@ -10526,8 +10733,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " -"%sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" +"sNastavovacího skriptu%s." #: prefs_manage.php:308 msgid "Save to browser's storage" @@ -10916,209 +11123,6 @@ msgstr "" "sledovat výsledky případně provést zátěžové testy. Pokud nedošlo ke " "znatelnému zlepšení, můžete nastavení vrátit zpět." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrukce monitoru" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Monitor phpMyAdmina vám může pomoci s vyladěním nastavení serveru a nalézt " -"náročné dotazy. Pro porovnávání dotazů budete potřebovat mít nastavený " -"log_output na 'TABLE' a mít povolené záznam pomalých dotazů nebo všech " -"dotazů. Zaznamenání všech dotazů ale může zvýšit zatížení serveru až o 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Váš databázový server bohužel nepodporuje záznam dotazů do tabulky, které " -"phpMyAdmin potřebuje pro analýzu databázových záznam. Tato vlastnost je " -"podporována v MySQL 5.1.6 a novějších. I bez této podpory však můžete použít " -"zobrazování grafů s informacemi o serveru." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Používání monitoru:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Váš prohlížeč bude graf obnovovat v pravidelných intervalech. V nastaveních " -"můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " -"odstranit grafy." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Pro zobrazení dotazů ze záznamu zvolte časové období, které vás zajímá, " -"podržením levého tlačítka myši a pohybem přes graf. Po potvrzení bude " -"nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " -"analýze." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Poznámka:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Zapnutí záznamu dotazů může zvýšit zatížení serveru o 5-15%. Výpočet " -"statistik z těchto záznamů je také výpočetně náročný, proto doporučujeme " -"vybírat krátké časové období a záznam vypnout poté co již monitorování " -"nebudete potřebovat." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Přidat graf" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Předdefinované grafy" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Stavové proměnné" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vyberte série:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Obvykle monitorované" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "nebo zadejte jméno proměnné:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Zobrazit jako rozdíl" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Vynásobit" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Zobrazit hodnoty s jednotkou" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Přidat tuto sérii" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Odstranit série" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Série v grafu:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistiky záznamů" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Zvolený časový rozsah:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Před sloučením odstranit proměnná data v příkazech INSERT" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Zvolte ze kterého záznamu si přejete vygenerovat statistiku." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Výsledky jsou sloučeny podle textu dotazu." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analýza dotazu" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundy" -msgstr[2] "%d sekund" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuta" -msgstr[1] "%d minuty" -msgstr[2] "%d minut" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Spustit monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Návod/Nastavení" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Ukončit přesouvání grafů" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Povolit přesouvání grafů" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Obnovovací frekvence" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Sloupce grafu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Uspořádání grafů" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Uspořádání grafů je uloženo ve vašem prohlížeči. Pokud máte komplikovanější " -"nastavení, můžete ho chtít exportovat a zálohovat." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Obnovit na výchozí hodnotu" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11876,9 +11880,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Prosím, vytvořte adresář [em]config[/em] zapisovatelný pro web server v " -"kořenovém adresáři phpMyAdmina, jak je popsáno v " -"[doc@setup_script]dokumentaci[/doc]. Jinak budete moci nastavení pouze " -"stáhnout nebo zobrazit." +"kořenovém adresáři phpMyAdmina, jak je popsáno v [doc@setup_script]" +"dokumentaci[/doc]. Jinak budete moci nastavení pouze stáhnout nebo zobrazit." #: setup/frames/index.inc.php:60 msgid "" @@ -12026,8 +12029,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)" -"[br]Poslední stabilní verze je %s a byla vydána %s." +"Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)[br]" +"Poslední stabilní verze je %s a byla vydána %s." #: setup/lib/index.lib.php:203 msgid "No newer stable version is available" @@ -12117,8 +12120,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" -"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" +"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:314 @@ -12129,8 +12132,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " -"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" +"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." @@ -12140,8 +12143,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Nastavil jste typ přihlašování [kbd]config[/kbd] a zadal jste uživatelské " "jméno a heslo pro automatické přihlášení, což není doporučená volba pro " @@ -12191,24 +12194,24 @@ msgstr "" msgid "Wrong data" msgstr "Chybná data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Nebyl vytvořen oblíbený dotaz" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12217,19 +12220,11 @@ msgstr "" "Tabulka %s neobsahuje unikátní klíč. Editování v mřížce, zaškrtávací políčka " "nebo odkazy na editaci a mazání proto nejsou k dispozici." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s klíči v tabulce „%s\"" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Přidat tento SQL dotaz do oblíbených" - -#: sql.php:1191 -msgid "Label:" -msgstr "Název:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Nebyla nalezena žádná data" @@ -12434,31 +12429,31 @@ msgstr "Zvolte která pole zobrazit:" msgid "No column selected." msgstr "Nebyl vybrán žádný sloupec." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Záznamy o sledování tabulky `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Verze %1$s vytvořena, sledování pro %2$s je zapnuté." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledování pro %1$s bylo vypnuto ve verzi %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledování pro %1$s bylo zapnuto ve verzi %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL příkazy byly provedeny." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12466,114 +12461,114 @@ msgstr "" "Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, " "že na tuto operací máte oprávnění." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Uložené příkazy pro změnu struktury byly úspěšně smazány" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Uložené příkazy pro změnu dat byly úspěšně smazány" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Sledování příkazů" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zobrazit %1$s mezi daty %2$s a %3$s od uživatele %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Odstranit tyto informace o sledování této tabulky" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nejsou k dispozici žádná data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Příkaz pro definici dat" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Příkaz pro úpravu dat" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Výpis SQL (stáhnout soubor)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Výpis SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Provedení SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportovat jako %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Zobrazit verze" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Vypnout sledování pro %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Vypnout teď" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Zapnuté sledování pro %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Zapnout teď" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Vytvořit verzi %1$s z %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Sledovat tyto příkazy pro definici dat:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Sledovat tyto příkazy pro úpravu dat:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Vytvořit verzi" @@ -12695,8 +12690,8 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" -"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod " -"1%%." +"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod 1%" +"%." #: libraries/advisory_rules.txt:77 msgid "Long query time" @@ -12961,8 +12956,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "V současné době je volno %s%% mezipaměti. Tato hodnota by se měla držet nad " "80%%" @@ -13110,11 +13105,11 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" -"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod " -"10%%." +"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod 10%" +"%." #: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" @@ -13861,6 +13856,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Záhlaví opakovat každých %s řádek" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14150,9 +14148,9 @@ msgstr "concurrent_insert je nastaveno na 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Při nastavení na [kbd]nested[/kbd], bude komentář použit pro zanoření a " #~ "rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář " diff --git a/po/cy.po b/po/cy.po index cf7995beba..5208b0e393 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" -"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -49,7 +49,7 @@ msgid "Search:" msgstr "Chwilio" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -78,21 +78,21 @@ msgstr "Chwilio" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Ewch" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Enw allweddol" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Disgrifiad" @@ -111,7 +111,7 @@ msgstr "" "Dyw'r ffeil %s ddim ar gael ar y system hon, ewch i www.phpmyadmin.net am " "wybodaeth bellach." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." @@ -141,7 +141,7 @@ msgstr "Sylwadau tabl" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Colofn" @@ -164,7 +164,7 @@ msgstr "Colofn" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Math" @@ -181,7 +181,7 @@ msgstr "Math" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -196,7 +196,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Diofyn" @@ -238,9 +238,9 @@ msgstr "Sylwadau" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Na" @@ -265,9 +265,9 @@ msgstr "Na" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ie" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabl" @@ -404,7 +404,7 @@ msgstr "Tablau a draciwyd" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Cronfa ddata" @@ -412,17 +412,17 @@ msgstr "Cronfa ddata" msgid "Last version" msgstr "Fersiwn diweddaraf" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Crëwyd" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Diweddarwyd" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Statws" @@ -435,7 +435,7 @@ msgstr "Statws" msgid "Action" msgstr "Gweithred" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Dangos" @@ -451,11 +451,11 @@ msgstr "Dilëwch data tracio ar gyfer y tabl hwn" msgid "Drop" msgstr "Gollwng" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "gweithredol" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ddim yn weithredol" @@ -463,11 +463,11 @@ msgstr "ddim yn weithredol" msgid "Versions" msgstr "Fersiynau" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Adroddiad tracio" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Ciplun strwythur" @@ -628,11 +628,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." @@ -679,7 +679,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" @@ -702,7 +702,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -913,7 +913,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." @@ -923,7 +923,7 @@ msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." msgid "Do you really want to execute \"%s\"?" msgstr "A ydych chi wir am" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -1024,8 +1024,8 @@ msgstr "Dim Breintiau" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Cau" @@ -1164,13 +1164,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1213,7 +1213,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1239,13 +1239,14 @@ msgstr "Snap i'r grid" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Dim" @@ -1346,7 +1347,7 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1442,7 +1443,7 @@ msgstr "Esbonio SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Amser" @@ -1555,7 +1556,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" @@ -1622,7 +1623,7 @@ msgid "Cancel" msgstr "Diddymu" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy #| msgid "Load" msgid "Loading" @@ -1811,7 +1812,7 @@ msgstr "mewn ymholiad" msgid "Show query box" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1824,7 +1825,7 @@ msgstr "Golygu" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1920,7 +1921,7 @@ msgstr "Datganiad diffiniad data" msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1938,7 +1939,7 @@ msgstr "Terfynwyd llinellau gan" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2439,31 +2440,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Maint ffont" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Esgynnol" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2618,14 +2619,14 @@ msgstr "Pori" msgid "Delete the matches for the %s table?" msgstr "Dileu'r cydweddau ar gyfer tabl %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Dileu" @@ -2732,17 +2733,11 @@ msgstr "llorweddol (penawdau wedi cylchdroi)" msgid "vertical" msgstr "fertigol" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Gweithredu ymholiad a glustnodwyd" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Trefnu gan allwedd" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2769,96 +2764,96 @@ msgstr "Trefnu gan allwedd" msgid "Options" msgstr "Opsiynau" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testunau Rhannol" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testunau Llawn" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Allwedd perthynol" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Colofn dangosydd perthynol" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Dangos cynnwys deuaidd" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Dangos cynnwys BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Lladd" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "mewn ymholiad" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "cyfanswm" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2867,8 +2862,8 @@ msgstr "Cymerodd yr ymholiad %01.4f eiliad" msgid "With selected:" msgstr "Gyda'r dewis:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2879,49 +2874,49 @@ msgstr "Gyda'r dewis:" msgid "Check All" msgstr "Dewis Pob" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Allforio" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Argraffu golwg" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -2998,38 +2993,38 @@ msgstr "Dim indecs wedi'i ddiffinio!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indecsau" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Coladiad" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Sylw" @@ -3071,7 +3066,7 @@ msgstr "Dangos" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Strwythur" @@ -3218,17 +3213,17 @@ msgstr[1] "%1$d rhes wedi'u hychwanegu." msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "Cyfrifwch y tablau" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3479,7 +3474,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3582,14 +3577,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3833,7 +3828,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Uchaf: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3896,7 +3891,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mewnol" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Proffilio" @@ -4379,8 +4374,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4950,9 +4945,8 @@ msgstr "Enw'r dudalen" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5717,8 +5711,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5926,8 +5920,8 @@ msgstr "Dadansoddi tabl" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5944,8 +5938,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6042,8 +6036,8 @@ msgstr "Datganiadau i'w tracio" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6062,8 +6056,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6182,8 +6176,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6261,8 +6255,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Enw defnyddiwr" @@ -6696,7 +6690,7 @@ msgstr "Cronfeydd Data" msgid "Table(s):" msgstr "Tablau" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6754,8 +6748,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7276,8 +7270,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7295,7 +7289,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7419,11 +7413,11 @@ msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7476,7 +7470,7 @@ msgstr "Ailenwi tabl i" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7813,17 +7807,17 @@ msgid "Drop the database (DROP)" msgstr "Dilëwch y gronfa ddata (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Strwythur yn unig" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strwythur a data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data yn unig" @@ -7990,11 +7984,11 @@ msgstr "Croeso i %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " -"%1$sgript gosod%2$s er mwyn ei chreu." +"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1" +"$sgript gosod%2$s er mwyn ei chreu." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8277,7 +8271,7 @@ msgstr "Rhoi enwau colofnau yn y rhes gyntaf" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8285,7 +8279,7 @@ msgstr "Gwesteiwr" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8303,7 +8297,7 @@ msgstr "Fersiwn PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9433,7 +9427,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ychwanegol" @@ -9602,7 +9596,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Fersiwn" @@ -10052,8 +10046,8 @@ msgstr "Gorolwg" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -10064,60 +10058,278 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Eiliad" +msgstr[1] "Eiliad" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Munud" +msgstr[1] "Munud" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Dangos ystadegau" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Dewis Tablau" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "Ymholiad" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Routines" +msgid "Add chart" +msgstr "Rheolweithiau" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Tynnwch y gronfa ddata" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Dewis Tablau" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Enw tabl annilys" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Ychwanegwch weinydd newydd" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Adfywio" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "Chart columns" +msgstr "Ychwanegu/Dileu colofnau" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Adfer gwerth diofyn" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "Generadu" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Maint tyfu'r ffeil ddata" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Sad" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Cyfanswm" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Amser" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Cau" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Amser" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Clustnodwch yr ymholiad SQL hwn" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "Allwedd y label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10138,10 +10350,6 @@ msgstr "Clirio" msgid "Bookmark this SQL query:" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10269,7 +10477,7 @@ msgstr "Gwiriwch dablau â gorbenion" msgid "Sort" msgstr "Trefnu" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10431,7 +10639,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10583,7 +10791,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" @@ -10641,7 +10849,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Dilëwch berthynas" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10717,47 +10925,47 @@ msgstr "Creu" msgid "Active options" msgstr "Gweithredoedd" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "tudalennau" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Mewnforiwch ffeiliau" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "Crëwch dudalen" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "Page name" msgid "New page name: " msgstr "Enw'r dudalen" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10787,7 +10995,7 @@ msgstr "Perthynas mewnol wedi'i ychwanegu" msgid "Relation deleted" msgstr "Perthynas wedi'i ddileu" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Gwall wrth gadw cyfesurynnau ar gyfer y Dyluniwr." @@ -11202,209 +11410,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Routines" -msgid "Add chart" -msgstr "Rheolweithiau" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Tynnwch y gronfa ddata" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Dewis Tablau" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Enw tabl annilys" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Ychwanegwch weinydd newydd" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Dangos ystadegau" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Dewis Tablau" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "Ymholiad" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Eiliad" -msgstr[1] "Eiliad" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Munud" -msgstr[1] "Munud" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Adfywio" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete columns" -msgid "Chart columns" -msgstr "Ychwanegu/Dileu colofnau" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Adfer gwerth diofyn" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12298,8 +12303,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12342,49 +12347,39 @@ msgstr "" msgid "Wrong data" msgstr "Dim cronfeydd data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Clustnodi %s a grëwyd" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Clustnodwch yr ymholiad SQL hwn" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "Allwedd y label" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12628,156 +12623,156 @@ msgstr "Dewis colofn i'w dangos" msgid "No column selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Mae tracio'n weithredol" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Mae tracio'n weithredol" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Ciplun fersiwn %s (cod SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Datganiadau tracio" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Dim cronfeydd data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dyddiad" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Datganiad diffiniad data" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Datganiad trin data" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Dadlwythiad SQL (lawrlwytho ffeil)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Dadlwythiad SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Bydd yr opsiwn hwn yn disodli eich tabl a'r data sydd ynddo." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Gweithrediad SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Allforio fel %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Dangos fersiynau" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Dadweithredwch dracio am %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Dadweithredwch nawr" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Gweithredwch dracio am %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Gweithredwch nawr" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Crëwch fersiwn %s o %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crëwch fersiwn" @@ -13160,8 +13155,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13294,8 +13289,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14005,6 +14000,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Gweithredu ymholiad a glustnodwyd" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -14224,8 +14224,8 @@ msgstr "" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata " -#~ "%s?" +#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/da.po b/po/da.po index 28f9150c3f..069c36af27 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-13 20:03+0200\n" "Last-Translator: Aputsiaq Niels Janussen \n" -"Language-Team: Danish \n" -"Language: da\n" +"Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -44,7 +45,7 @@ msgid "Search:" msgstr "Søg:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +74,21 @@ msgstr "Søg:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Udfør" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nøglenavn" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beskrivelse" @@ -105,7 +106,7 @@ msgid "" msgstr "" "Filen %s er ikke tilgængelig, besøg www.phpmyadmin.net for mere information." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s er oprettet." @@ -133,7 +134,7 @@ msgstr "Tabelkommentarer:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolonnenavn" @@ -156,7 +157,7 @@ msgstr "Kolonnenavn" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Datatype" @@ -173,7 +174,7 @@ msgstr "Datatype" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulværdi" @@ -188,7 +189,7 @@ msgstr "Nulværdi" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standardværdi" @@ -230,9 +231,9 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nej" @@ -257,9 +258,9 @@ msgstr "Nej" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -310,7 +311,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -386,7 +387,7 @@ msgstr "Sporede tabeller" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Database" @@ -394,17 +395,17 @@ msgstr "Database" msgid "Last version" msgstr "Seneste version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Oprettet" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Opdateret" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -417,7 +418,7 @@ msgstr "Status" msgid "Action" msgstr "Handling" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Vis" @@ -433,11 +434,11 @@ msgstr "Slet sporingsdata for denne tabel" msgid "Drop" msgstr "Slet" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ikke aktiv" @@ -445,11 +446,11 @@ msgstr "ikke aktiv" msgid "Versions" msgstr "Versioner" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Sporingsrapport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Øjebliksbillede af struktur" @@ -597,8 +598,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Du har sandsynligvis forsøgt at overføre en fil som er for stor. Se venligst " "%sdokumentationen%s for måder at omgå denne begrænsning." @@ -647,7 +648,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, tjek venligst din installation!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" @@ -674,7 +675,7 @@ msgstr "" "normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med " "mindre du forøger PHP-tidsbegrænsningerne." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -863,8 +864,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmin configuration storage er ikke fuldstændigt konfigureret; nogle " -"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik " -"%sher%s." +"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik %" +"sher%s." #: index.php:521 #, php-format @@ -882,7 +883,7 @@ msgid "" "issues." msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." @@ -891,7 +892,7 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." msgid "Do you really want to execute \"%s\"?" msgstr "Er du sikker på at du vil udføre \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -975,8 +976,8 @@ msgstr "Genindlæser privillegier" msgid "Removing Selected Users" msgstr "Fjerner valge brugere" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Luk" @@ -1103,13 +1104,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1148,7 +1149,7 @@ msgid "Traffic" msgstr "Trafik" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Indstillinger" @@ -1168,13 +1169,14 @@ msgstr "Snap diagram til gitter" msgid "Please add at least one variable to the series" msgstr "Tilføj mindst en variabel til serien" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ingen" @@ -1274,7 +1276,7 @@ msgstr "Ændre indstillinger" msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagramtitel" @@ -1360,7 +1362,7 @@ msgstr "Forklar output" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tid" @@ -1459,7 +1461,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importér" @@ -1516,7 +1518,7 @@ msgid "Cancel" msgstr "Annuller" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Indlæser" @@ -1667,7 +1669,7 @@ msgstr "Skjul forespørgeselsboks" msgid "Show query box" msgstr "Vis forespørgselsbox" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1680,7 +1682,7 @@ msgstr "Ret" msgid "No rows selected" msgstr "Ingen rækker valgt" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1765,7 +1767,7 @@ msgstr "Datapunkt-indhold" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopi" @@ -1781,7 +1783,7 @@ msgstr "Linjestreng" msgid "Polygon" msgstr "Polygon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometri" @@ -2265,32 +2267,32 @@ msgstr "pr. time" msgid "per day" msgstr "per dag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Eksisterende konfigurationsfil (%s) kan ikke læses." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Forkerte rettigheder på konfigurationsfil. Må ikke være skrivbar af alle!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Skriftstørrelse" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Stigende" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2432,14 +2434,14 @@ msgstr "Vis" msgid "Delete the matches for the %s table?" msgstr "Slet sammenfald for %s tabellen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Slet" @@ -2526,16 +2528,11 @@ msgstr "vandret (roterede overskrifter)" msgid "vertical" msgstr "lodret" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Overskrifter for hver %s. række" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sorteringsnøgle" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2562,90 +2559,90 @@ msgstr "Sorteringsnøgle" msgid "Options" msgstr "Indstillinger" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Delvise tekster" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Komplette tekster" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relationel nøgle" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relationel visningskolonne" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Vis binært indhold" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Vis indhold af BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Vis binært indhold som HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Skjul browser-transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Velkendt tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Velkendt binær" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Rækken er slettet" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "i forespørgsel" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Viser poster" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "forepørgsel tog %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2654,8 +2651,8 @@ msgstr "forepørgsel tog %01.4f sek" msgid "With selected:" msgstr "Med det markerede:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2666,45 +2663,45 @@ msgstr "Med det markerede:" msgid "Check All" msgstr "Vælg alle" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportér" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Opret view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Udskriv" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Udskriv (med fulde tekster)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link ikke fundet" @@ -2781,38 +2778,38 @@ msgstr "Intet indeks defineret!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Tegnsæt (sortering)" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2854,7 +2851,7 @@ msgstr "Visning" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -2999,15 +2996,15 @@ msgstr[1] "%1$d rækker sat ind." msgid "Error while creating PDF:" msgstr "Fejl ved oprettelse af PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Kunne ikke gemme seneste tabel" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Seneste tabeller" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Der er ingen nye tabeller" @@ -3249,7 +3246,7 @@ msgid "Maximum rows to plot" msgstr "Maksimalt antal plottede rækker" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" @@ -3361,20 +3358,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til " -"-1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38" +"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til -" +"1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er " -"-1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt " +"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er -" +"1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt " "2.2250738585072014E-308 til 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3652,7 +3649,7 @@ msgstr "En optælling, udvalgt fra listen med definerede værdier" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL-forespørgsel:" @@ -3711,7 +3708,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "I linje" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilering" @@ -4187,8 +4184,8 @@ msgstr "Redigering af CHAR-kolonner" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Brug en brugervenlig redigering til redigering af SQL-forespørgsler, " "([a@http://codemirror.net/]CodeMirror[/a]) med fremhævelse af syntaks og " @@ -4586,8 +4583,8 @@ 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 "" -"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" +"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:149 msgid "Foreign key dropdown order" @@ -4729,9 +4726,8 @@ msgstr "Sidetitler" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Angiv browserens tekst i titelbaren. Se [doc@cfg_TitleTable]dokumentationen[/" "doc] for tekststrenge der indeholder særlige værdier." @@ -4855,10 +4851,10 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Hvis du ønsker at bruge servicen SQL Validator, skal du huske på, at " -"[strong]alle SQL forespørgsler lagres anonymt til statistiske formål[/" -"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " -"Copyright 2002 Upright Database Technology. All rights reserved.[/em]" +"Hvis du ønsker at bruge servicen SQL Validator, skal du huske på, at [strong]" +"alle SQL forespørgsler lagres anonymt til statistiske formål[/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:220 msgid "Startup" @@ -5192,8 +5188,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt " -"([kbd]new[/kbd])" +"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]" +"new[/kbd])" #: libraries/config/messages.inc.php:302 msgid "Logo link target" @@ -5532,11 +5528,11 @@ msgstr "Bogmærketabel" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Efterlades tom for ingen kolonnekommentar-/mime-typer, forslag: " -"[kbd]pma_column_info[/kbd]" +"Efterlades tom for ingen kolonnekommentar-/mime-typer, forslag: [kbd]" +"pma_column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5606,8 +5602,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Efterlades tom for at undlade Designer-understøttelse, forslag: " -"[kbd]pma_designer_coords[/kbd]" +"Efterlades tom for at undlade Designer-understøttelse, forslag: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5711,8 +5707,8 @@ msgstr "Adgangskode for config auth" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: " -"[kbd]pma_pdf_pages[/kbd]" +"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5754,8 +5750,8 @@ msgstr "Senest benyttede tabel" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Efterlades tom for at undlade understøttelse af [a@http://wiki.phpmyadmin." "net/pma/relation]relation-links[/a], forslag: [kbd]pma_relation[/kbd]" @@ -5774,8 +5770,8 @@ msgstr "SHOW DATABASES kommando" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/" "a] for et eksempel" @@ -5809,8 +5805,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: " -"[kbd]pma_table_coords[/kbd]" +"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5887,8 +5883,8 @@ msgstr "Forespørgsler, der skal spores" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Efterlades tom for at undlade understøttelse af sporing på SQL-forspørgsler, " "forslag: [kbd]pma_tracking[/kbd]" @@ -5910,8 +5906,8 @@ msgstr "Opret versioner automatisk" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Efterlades tom for at undlade lagring af bruger-præferencer i database, " "forslag: [kbd]pma_userconfig[/kbd]" @@ -6121,8 +6117,8 @@ msgstr "" "Hvis du har dit eger brugernavn, så angiv det her (standard [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Brugernavn" @@ -6531,7 +6527,7 @@ msgstr "Database(r):" msgid "Table(s):" msgstr "Tabel(ler):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rækker:" @@ -6580,8 +6576,8 @@ msgstr ", @TABLE@ vil blive tabelnavnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -7130,8 +7126,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentation og yderligere information om PBXT kan findes på %sPrimeBase XT " "hjemmeside%s." @@ -7149,7 +7145,7 @@ msgid "No data found for GIS visualization." msgstr "Ingen data fundet for GIS visualization." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." @@ -7268,11 +7264,11 @@ msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -7317,7 +7313,7 @@ msgstr "Tilføj tabelpræfiks:" msgid "Add prefix" msgstr "Tilføj præfiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Er du sikker på at du vil udføre følgende forespørgsel?" @@ -7645,17 +7641,17 @@ msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Kun strukturen" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur og data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Kun data" @@ -7816,8 +7812,8 @@ msgstr "Velkommen til %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -8070,13 +8066,13 @@ msgstr "Indsæt feltnavne i første række:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Vært:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Genereringstid:" @@ -8090,7 +8086,7 @@ msgstr "PHP-version:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Database:" @@ -8363,7 +8359,6 @@ msgstr "" "prøv igen." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Kunne ikke fortolke OpenDocument-regnearket!" @@ -9208,7 +9203,7 @@ msgstr "Attributter" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9371,7 +9366,7 @@ msgid "Library" msgstr "Bibliotek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9829,14 +9824,14 @@ msgstr "Oversigt over brugere" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" -"%s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" +"s før du fortsætter." #: libraries/server_privileges.lib.php:3036 msgid "The selected user was not found in the privilege table." @@ -9846,46 +9841,262 @@ msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekund" +msgstr[1] "%d sekunder" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minutter" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logstatistik" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Valgt tidsinterval:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultaterne er grupperet af forespørgselstekst." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Forespørgselsanalysator" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitorinstruktioner" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin Monitor kan hjælpe dig med at optimere serverkonfigurationen og " +"afsløre tidskrævende forespørgsler. For sidstnævnte kræver det at log_output " +"sættes til 'TABLE' og at slow_query_log eller general_log aktiveres. Bemærk " +"dog, at general_log genererer en mængde data og forøger server load med op " +"til 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Uheldigvis understøtter din databaseserver ikke logning til tabel, som " +"kræves for at kunnne analysere databaselogs med phpMyAdmin. Logning til " +"tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " +"bruge funktionerne for serverdiagrammer." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Brug af monitor:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Din browser vil opdatere alle viste diagrammer i et regelmæssigt interval. " +"Du kan tilføje diagrammer og ændre opdateringsfrekvensen under " +"'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " +"cog på det relevante diagram." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"For at vise forespørgsler på logs så vælg det relevante tidsinterval på et " +"diagram ved at holde venstre museknap nede og flytte musen over diagrammet. " +"Når det er bekræftet, vil dette indlæse en tabel af grupperede forspørgsler, " +"hvor man kan klikke på en given SELECT-forespørgsel for at analysere det." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Bemærk venligst:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Aktivering af general_log kan forøge server load med 5-15%. Vær også " +"opmærksom på, at statistikgenerering fra logs er en krævende opgave, så det " +"tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og " +"tømme dens tabel, når der ikke er behov for den længere." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Tilføj diagram" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Foruddefineret diagram" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Statusvariabel/-ble" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vælg serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Almindeligt overvåget" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "eller indtast variabelnavn:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Vis som forskelsværdi" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Anvend divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Tilføj enhed til dataværdier" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Tilføj denne serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Slet serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serier i diagram:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Start monitorering" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruktioner/Opsætning" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Færdig med at trække (flytte) rundt på diagrammer" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Aktivér mulighed for at trække rundt på diagrammer" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Opdateringsfrekvens" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagramkolonner" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagramopstilling" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " +"muligt at eksportere den, hvis man har en kompleks opstilling." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Gendan standardværdi" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Genereret af:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Detaljeret profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Rækkefølge" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Tilstand" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Opsummering efter tilstand" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Samlet tid" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% tid" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Kald" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø tid" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Lav bogmærke til denne SQL-forespørgsel" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etikette:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Lad alle brugere bruge dette bogmærke" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9904,10 +10115,6 @@ msgstr "Ryd" msgid "Bookmark this SQL query:" msgstr "Lav bogmærke til denne SQL-forespørgsel:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Lad alle brugere bruge dette bogmærke" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Erstat eksisterende bogmærke af samme navn" @@ -10048,7 +10255,7 @@ msgstr "Tjek tabeller der har overhead" msgid "Sort" msgstr "Sorter" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ingen" @@ -10131,7 +10338,6 @@ msgid "After %s" msgstr "Efter %s" #: libraries/structure.lib.php:1670 -#| msgid "Row Statistics" msgid "Row statistics" msgstr "Rækkestatistik" @@ -10203,7 +10409,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s er blevet ændret" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Forespørgselsfejl" @@ -10354,7 +10560,7 @@ msgstr "Fejl i ZIP arkiv:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Kritisk fejl: Navigationen kan kun tilgås via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Rettelserne er gemt" @@ -10410,7 +10616,7 @@ msgstr "Skift mellem små/store" msgid "Toggle relation lines" msgstr "Slå relationslinjer til eller fra" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importér/eksportér koordinater for PDF-opstilling" @@ -10468,39 +10674,39 @@ msgstr "Sammenstil" msgid "Active options" msgstr "Aktive indstillinger" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Side er blevet oprettet" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sideoprettelse fejlede" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Side:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importér fra valgt side" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Eksportér til valgte side" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Opret en side og eksportér til denne" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nyt sidenavn: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Eksportér/importér til skala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "anbefalet" @@ -10528,7 +10734,7 @@ msgstr "Intern relation tilføjet" msgid "Relation deleted" msgstr "Relation slettet" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fejl ved lagring af koordinater for Designer." @@ -10969,209 +11175,6 @@ msgstr "" "gangen, observere og teste din database og annullere ændringen, hvis der " "ingen klart synlig forskel var." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitorinstruktioner" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin Monitor kan hjælpe dig med at optimere serverkonfigurationen og " -"afsløre tidskrævende forespørgsler. For sidstnævnte kræver det at log_output " -"sættes til 'TABLE' og at slow_query_log eller general_log aktiveres. Bemærk " -"dog, at general_log genererer en mængde data og forøger server load med op " -"til 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Uheldigvis understøtter din databaseserver ikke logning til tabel, som " -"kræves for at kunnne analysere databaselogs med phpMyAdmin. Logning til " -"tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " -"bruge funktionerne for serverdiagrammer." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Brug af monitor:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Din browser vil opdatere alle viste diagrammer i et regelmæssigt interval. " -"Du kan tilføje diagrammer og ændre opdateringsfrekvensen under " -"'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " -"cog på det relevante diagram." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"For at vise forespørgsler på logs så vælg det relevante tidsinterval på et " -"diagram ved at holde venstre museknap nede og flytte musen over diagrammet. " -"Når det er bekræftet, vil dette indlæse en tabel af grupperede forspørgsler, " -"hvor man kan klikke på en given SELECT-forespørgsel for at analysere det." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Bemærk venligst:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Aktivering af general_log kan forøge server load med 5-15%. Vær også " -"opmærksom på, at statistikgenerering fra logs er en krævende opgave, så det " -"tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og " -"tømme dens tabel, når der ikke er behov for den længere." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Tilføj diagram" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Foruddefineret diagram" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Statusvariabel/-ble" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vælg serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Almindeligt overvåget" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "eller indtast variabelnavn:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Vis som forskelsværdi" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Anvend divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Tilføj enhed til dataværdier" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Tilføj denne serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Slet serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serier i diagram:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logstatistik" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Valgt tidsinterval:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultaterne er grupperet af forespørgselstekst." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Forespørgselsanalysator" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekund" -msgstr[1] "%d sekunder" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minutter" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Start monitorering" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruktioner/Opsætning" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Færdig med at trække (flytte) rundt på diagrammer" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Aktivér mulighed for at trække rundt på diagrammer" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Opdateringsfrekvens" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagramkolonner" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagramopstilling" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " -"muligt at eksportere den, hvis man har en kompleks opstilling." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Gendan standardværdi" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12204,10 +12207,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Hvis du føler, at dette er nødvendigt, brug yderligere sikring - " -"%sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-" -"baseret beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en " -"udbyder med mange tusinde brugere." +"Hvis du føler, at dette er nødvendigt, brug yderligere sikring - %" +"sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-baseret " +"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder med " +"mange tusinde brugere." #: setup/lib/index.lib.php:316 #, php-format @@ -12215,14 +12218,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og " "adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for " "produktionssystemer. Enhver som kender eller gætter din phpMyAdmin URL kan " -"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt " -"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." +"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt %" +"sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12267,28 +12270,25 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn." msgid "Wrong data" msgstr "Forkerte data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bruger bogmærket \"%s\" som standard-forespørgsel til gennemsyn." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bogmærke blev ikke oprettet" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Valideret SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format -#| msgid "" -#| "This table does not contain a unique column. Grid edit, checkbox, Edit, " -#| "Copy and Delete features are not available." msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." @@ -12296,19 +12296,11 @@ msgstr "" "Tabellen %s indeholder ikke en unik kolonne. Redigering af gitter, " "afkrydsningsfelt, redigering og sletning er ikke tilgængelige." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Lav bogmærke til denne SQL-forespørgsel" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etikette:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Ingen data til visning" @@ -12514,31 +12506,31 @@ msgstr "Vælg kolonne til visning:" msgid "No column selected." msgstr "Der er ikke valgt kolonner." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Sporings rapport for tabel `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s blev oprettet, sporing af %2$s er aktiv." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sporing af %1$s blev deaktiveret i version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sporing af %1$s blev aktiveret i version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-sætninger udført." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12546,113 +12538,113 @@ msgstr "" "Du kan udføre eksporten ved at oprette og bruge en midlertidig database. " "Sørg venligst for at du har privilegier til at gøre det." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Udkommenter disse to linjer, hvis du ikke har brug for dem." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-sætninger eksporteres. Kopier venligst dump eller udfør den." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL kode)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Sporing af data definition slettet" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulerede sporingsdata slettet" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Sporingskommandoer" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %1$s med datoer fra %2$s til %3$s for brugeren %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Slet sporingsdatarække fra rapport" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Ingen data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dato" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Datadefinitionsudstryk" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Data manipuleringsudtryk" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-udtræk (hentning af fil)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Denne indstilling vil erstatte din tabel og dens indeholdte data." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-kørsel" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksportér som %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Vis versioner" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiver sporing af %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktiver nu" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktivér sporing af %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktivér nu" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Opret version %1$s af %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Spor disse datadefinitionskommandoer:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulations-forespørgsler:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Opret version" @@ -13052,8 +13044,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. " "Det bør være over 80%%" @@ -13207,8 +13199,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% af alle sorteringer bruger midlertidige tabeller. Denne værdi bør være " "mindre end 10%%." @@ -13958,6 +13950,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Overskrifter for hver %s. række" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14213,9 +14208,9 @@ msgstr "concurrent_insert er sat til 0" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Aktivering indebærer, at en side, som ligger på et andet domæne, har " -#~ "adgang til at kalde phpMyAdmin fra en ramme. Det er en potentiel " -#~ "[strong]sikkerhedsrisiko[/strong], fordi det åbner op for cross-frame " -#~ "scripting angreb" +#~ "adgang til at kalde phpMyAdmin fra en ramme. Det er en potentiel [strong]" +#~ "sikkerhedsrisiko[/strong], fordi det åbner op for cross-frame scripting " +#~ "angreb" #~ msgid "Allow third party framing" #~ msgstr "Tillad rammeværk fra tredjepart" @@ -14251,13 +14246,13 @@ msgstr "concurrent_insert er sat til 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Når denne sættes til [kbd]nested[/kbd] bruges alias for tabelnavnet kun " -#~ "til at splitte/samle tabellerne i henhold til direktivet " -#~ "$cfg['LeftFrameTableSeparator'], så kun mappen benævnes som aliaset; " +#~ "til at splitte/samle tabellerne i henhold til direktivet $cfg" +#~ "['LeftFrameTableSeparator'], så kun mappen benævnes som aliaset; " #~ "tabelnavnet selv forbliver uændret" #~ msgid "Display table comment instead of its name" diff --git a/po/de.po b/po/de.po index 648f1201c4..349ab135a8 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-19 12:38+0200\n" "Last-Translator: Raimund Meyer \n" -"Language-Team: German \n" -"Language: de\n" +"Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -40,12 +41,11 @@ msgstr "" "Zugriff aufgrund Ihrer Sicherheitseinstellungen." #: browse_foreigners.php:182 -#| msgid "Search" msgid "Search:" msgstr "Suche:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Suche:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Schlüsselname" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beschreibung" @@ -107,7 +107,7 @@ msgstr "" "Die %s Datei steht auf diesem System nicht zur Verfügung. Bitte besuchen Sie " "www.phpmyadmin.net um nach weiteren Informationen zu suchen." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." @@ -118,7 +118,6 @@ msgstr "Datenbankkommentar: " #: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1336 #: libraries/tbl_columns_definition_form.inc.php:836 tbl_printview.php:120 -#| msgid "Table comments" msgid "Table comments:" msgstr "Tabellenkommentar:" @@ -136,7 +135,7 @@ msgstr "Tabellenkommentar:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Spalte" @@ -159,7 +158,7 @@ msgstr "Spalte" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -176,7 +175,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -191,7 +190,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standard" @@ -233,9 +232,9 @@ msgstr "Kommentare" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nein" @@ -260,9 +259,9 @@ msgstr "Nein" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -303,8 +302,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" -"%s um herauszufinden warum." +"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" +"s um herauszufinden warum." #: db_printview.php:47 db_tracking.php:79 db_tracking.php:198 #: libraries/Menu.class.php:190 libraries/config/messages.inc.php:510 @@ -314,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabelle" @@ -396,7 +395,7 @@ msgstr "Verfolgte Tabellen" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Datenbank" @@ -404,17 +403,17 @@ msgstr "Datenbank" msgid "Last version" msgstr "Letzte Version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Erstellt" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Aktualisiert" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -427,7 +426,7 @@ msgstr "Status" msgid "Action" msgstr "Aktion" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Zeige" @@ -443,11 +442,11 @@ msgstr "Lösche die Verlaufsdaten dieser Tabelle" msgid "Drop" msgstr "Löschen" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "nicht aktiv" @@ -455,11 +454,11 @@ msgstr "nicht aktiv" msgid "Versions" msgstr "Versionen" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Verfolgungs-Bericht" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" @@ -622,11 +621,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " -"%sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" +"sDokumentation%s zur Lösung diese Problems." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -675,7 +674,7 @@ msgstr "" "Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre " "phpMyAdmin-Installation!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" @@ -703,7 +702,7 @@ msgstr "" "dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern " "nicht die Ausführungszeitbeschränkungen von PHP gelockert werden." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -934,7 +933,7 @@ msgstr "" "Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen " "möglicher Probleme." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." @@ -943,7 +942,7 @@ msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." msgid "Do you really want to execute \"%s\"?" msgstr "Möchten Sie die Abfrage \"%s\" wirklich ausführen?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu LÖSCHEN!" @@ -1027,8 +1026,8 @@ msgstr "Benutzerrechte werden neu geladen" msgid "Removing Selected Users" msgstr "Die ausgewählten Benutzer werden gelöscht" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Schließen" @@ -1156,13 +1155,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1201,7 +1200,7 @@ msgid "Traffic" msgstr "Netzwerkverkehr" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Einstellungen" @@ -1221,13 +1220,14 @@ msgstr "Skala dem Raster hinzufügen" msgid "Please add at least one variable to the series" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "keine" @@ -1327,7 +1327,7 @@ msgstr "Einstellungen ändern" msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Schaubild-Titel" @@ -1417,7 +1417,7 @@ msgstr "Ausgabe erklären" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Zeit" @@ -1515,7 +1515,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" @@ -1572,7 +1572,7 @@ msgid "Cancel" msgstr "Abbrechen" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laden" @@ -1724,7 +1724,7 @@ msgstr "SQL-Querybox ausblenden" msgid "Show query box" msgstr "SQL-Querybox anzeigen" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1737,7 +1737,7 @@ msgstr "Bearbeiten" msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1824,7 +1824,7 @@ msgstr "Datenpunkt-Inhalt" msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopieren" @@ -1840,7 +1840,7 @@ msgstr "LineString" msgid "Polygon" msgstr "Polygon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrie" @@ -2335,33 +2335,33 @@ msgstr "pro Stunde" msgid "per day" msgstr "pro Tag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Bestehende Konfigurationsdatei (%s) kann nicht gelesen werden." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Falsche Zugriffsrechte auf die Konfigurationsdatei. Schreibzugriff sollte " "nicht für alle möglich sein!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Schriftgröße" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Aufsteigend" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2517,14 +2517,14 @@ msgstr "Anzeigen" msgid "Delete the matches for the %s table?" msgstr "Treffer für Tabelle %s löschen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Löschen" @@ -2615,16 +2615,11 @@ msgstr "horizontal (gedrehte Kopfzeilen)" msgid "vertical" msgstr "nebeneinander" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Kopfzeilen alle %s Zeilen" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Nach Schlüssel sortieren" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2651,95 +2646,95 @@ msgstr "Nach Schlüssel sortieren" msgid "Options" msgstr "Optionen" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Gekürzte Texte" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Vollständige Texte" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relationaler Schlüssel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relationale Anzeigespalte" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Binäre Inhalte anzeigen" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Binäre Inhalte in hexadezimal anzeigen" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Darstellungsumwandlung ausblenden" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Bekannter Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Bekanntes Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Beenden" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch " "[doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "in der Abfrage" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Zeige Datensätze" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "insgesamt" # (s is the abbreviation of "Sekunde", sec is it not (according to # International System of Units), so we wrote the complete one.) -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Die Abfrage dauerte %01.4f Sekunden" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2748,8 +2743,8 @@ msgstr "Die Abfrage dauerte %01.4f Sekunden" msgid "With selected:" msgstr "markierte:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2760,45 +2755,45 @@ msgstr "markierte:" msgid "Check All" msgstr "Alle auswählen" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportieren" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Erzeuge View" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Druckansicht" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualisiere GIS Daten" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden" @@ -2847,8 +2842,8 @@ msgstr "Unbekannter Fehler beim hochladen der Datei." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Fehler beim Verschieben der hochgeladenen Datei, siehe [doc@faq1-11]FAQ " -"1.11[/doc]" +"Fehler beim Verschieben der hochgeladenen Datei, siehe [doc@faq1-11]FAQ 1.11" +"[/doc]" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -2879,38 +2874,38 @@ msgstr "Kein Index definiert!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indizes" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalität" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Kollation" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2952,7 +2947,7 @@ msgstr "Ansicht" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -3097,15 +3092,15 @@ msgstr[1] "%1$d Datensätze eingefügt." msgid "Error while creating PDF:" msgstr "Fehler beim Erstellen der PDF Datei:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Konnte die letzte Tabelle nicht speichern" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Letzte Tabellen" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Es gibt keine letzten Tabellen" @@ -3279,8 +3274,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1603 #, php-format @@ -3350,7 +3345,7 @@ msgid "Maximum rows to plot" msgstr "Maximale Anzahl der darzustellenden Datensätze" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" @@ -3464,20 +3459,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis " -"-1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" +"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis -" +"1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind " -"-1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " +"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind -" +"1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " "2,2250738585072014E-308 bis 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3517,8 +3512,8 @@ msgstr "Ein Datum, unterstützter Bereich ist %1$s bis %2$s" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis " -"%2$s" +"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis %2" +"$s" #: libraries/Types.class.php:324 msgid "" @@ -3762,7 +3757,7 @@ msgstr "Eine Aufzählung, gewählt aus der Liste definierter Werte" msgid "Max: %s%s" msgstr "Maximal: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3823,7 +3818,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Messen" @@ -4304,8 +4299,8 @@ msgstr "Bearbeitung von CHAR-Felder" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Benutzerfreundlichen Editor ([a@http://codemirror.net/]CodeMirror[/a]) mit " "Syntaxhervorhebung und Zeilennummern zum Bearbeiten von SQL-Abfragen " @@ -4853,9 +4848,8 @@ msgstr "Seitentitel" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Text für die Browser-Titelleiste. Weitere Informationen über Schlüsselwörter " "und Variablennamen in der [doc@cfg_TitleTable]Dokumentation[/doc]." @@ -5290,8 +5284,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. " -"[kbd]32M[/kbd] ([kbd]0[/kbd] für unbegrenzt)" +"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:296 msgid "Memory limit" @@ -5656,8 +5650,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]Lesezeichen[/a]-Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]" +"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/bookmark]Lesezeichen" +"[/a]-Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5665,11 +5659,11 @@ msgstr "Lesezeichen Tabelle" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: " -"[kbd]pma__column_info[/kbd]" +"Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5744,8 +5738,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Leer lassen für keine Designer-Unterstützung, Vorschlag: " -"[kbd]pma__designer_coords[/kbd]" +"Leer lassen für keine Designer-Unterstützung, Vorschlag: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5756,9 +5750,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Mehr Informationen auf [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL " -"Bugs[/a]" +"Mehr Informationen auf [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5787,8 +5780,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Leer lassen für keine SQL Abfrageverlaufs-Unterstützung, Vorschlag: " -"[kbd]pma__history[/kbd]" +"Leer lassen für keine SQL Abfrageverlaufs-Unterstützung, Vorschlag: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5852,8 +5845,8 @@ msgstr "Passwort für config Authentifikation" 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]" +"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5895,8 +5888,8 @@ msgstr "Kürzlich verwendete Tabellen" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "link[/a] Unterstützung, Vorschlag: [kbd]pma__relation[/kbd]" @@ -5915,11 +5908,11 @@ msgstr "SHOW DATABASES Befehl" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Siehe [a@http://wiki.phpmyadmin.net/pma/" -"auth_types#signon]Authentifizierungsarten[/a] für ein Beispiel" +"Siehe [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"Authentifizierungsarten[/a] für ein Beispiel" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5951,8 +5944,8 @@ 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]" +"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6034,11 +6027,11 @@ msgstr "Zu verfolgende Statements" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: " -"[kbd]pma__tracking[/kbd]" +"Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -6058,8 +6051,8 @@ msgstr "Versionen automatisch erzeugen" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu " "speichern, Vorschlag: [kbd]pma__userconfig[/kbd]" @@ -6276,8 +6269,8 @@ msgstr "" "Falls Sie einen benutzerdefinierten Benutzernamen haben, hier angeben " "(Standard ist [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Benutzername" @@ -6342,8 +6335,8 @@ msgid "" msgstr "" "Proxies als [kbd]IP: trusted HTTP header[/kbd] eingeben. Das folgende " "Beispiel legt fest, das phpMyAdmin einem HTTP_X_FORWARDED_FOR (X-Forwarded-" -"For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: " -"HTTP_X_FORWARDED_FOR[/kbd] kommt, vertrauen soll" +"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:512 msgid "List of trusted proxies for IP allow/deny" @@ -6700,7 +6693,7 @@ msgstr "Datenbank(en):" msgid "Table(s):" msgstr "Tabelle(n):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Datensätze:" @@ -6749,8 +6742,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -6906,8 +6899,8 @@ msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" -"Der Dateiname einer komprimierten Datei muss mit .[Format]." -"[Komprimierung] enden. Beispiel: .sql.zip" +"Der Dateiname einer komprimierten Datei muss mit .[Format].[Komprimierung]" +" enden. Beispiel: .sql.zip" #: libraries/display_import.lib.php:245 msgid "File uploads are not allowed on this server." @@ -6931,8 +6924,8 @@ msgid "" "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" msgstr "" -"Import abbrechen, wenn die maximale PHP-Scriptlaufzeit erreicht wird. " -"(Damit ist es möglich, große Dateien zu importieren, allerdings kann es " +"Import abbrechen, wenn die maximale PHP-Scriptlaufzeit erreicht wird. " +"(Damit ist es möglich, große Dateien zu importieren, allerdings kann es " "Transaktionen zerstören.)" #: libraries/display_import.lib.php:296 @@ -7308,8 +7301,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -7327,7 +7320,7 @@ msgid "No data found for GIS visualization." msgstr "Keine Daten für die GIS-Darstellung gefunden." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." @@ -7452,11 +7445,11 @@ msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -7507,7 +7500,7 @@ msgstr "Tabellen-Prefix hinzufügen" msgid "Add prefix" msgstr "Prefix hinzufügen" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Möchten Sie die folgende Abfrage wirklich ausführen?" @@ -7838,17 +7831,17 @@ msgid "Drop the database (DROP)" msgstr "Datenbank löschen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Nur Struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur und Daten" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Nur Daten" @@ -8014,8 +8007,8 @@ msgstr "Willkommen bei %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können " "das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen." @@ -8279,7 +8272,7 @@ msgstr "Spaltennamen in die erste Zeile setzen" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8287,7 +8280,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8305,7 +8298,7 @@ msgstr "PHP-Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8469,8 +8462,8 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" "TIMESTAMP-Spalten als UTC exportieren (damit können TIMESTAMP-Spalten ex- " -"und importiert werden, auch wenn die Server in verschiedenen Zeitzonen " -"sind)" +"und importiert werden, auch wenn die Server in verschiedenen Zeitzonen sind)" +"" #: libraries/plugins/export/ExportSql.class.php:1198 msgid "Constraints for dumped tables" @@ -9478,7 +9471,7 @@ msgstr "Attribute" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9643,7 +9636,7 @@ msgid "Library" msgstr "Bibliothek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -10112,8 +10105,8 @@ msgstr "Benutzerübersicht" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden " "MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den " @@ -10129,63 +10122,291 @@ msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d Sekunde" +msgstr[1] "%d Sekunden" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d Minute" +msgstr[1] "%d Minuten" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Protokoll Statistik" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Ausgewählte Zeit-Spanne:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Lösche Variablen-Werte in INSERT Abfragen um die Gruppierung zu verbessern" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" +"Bitte wählen Sie das Protokoll aus, von dem Statistiken generiert werden " +"sollen." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Query Analyzer" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Einführung zur Überwachung" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Die phpMyAdmin-Überwachung kann Sie bei der Server-Konfiguration, und auch " +"beim Aufspühren von zeitintensiven Abfragen unterstützen. Für Letzteres " +"müssen Sie log_output auf 'TABLE' stellen und entweder slow_query_log oder " +"general_log aktivieren. Beachten Sie aber, dass das Aktivieren der " +"general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " +"erhöhen kann." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Leider unterstützt Ihr Datenbank-Servers keine Protokollierung in eine " +"Tabelle. Dies ist eine Voraussetzung für die Analyse der Datenbankprotokolle " +"mit PhpMyAdmin. Protokollierung in eine Tabelle wird von MySQL 5.1.6 und " +"höher unterstützt. Sie können dennoch die Server Diagramm-Funktionen nutzen." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Verwendung der Überwachung:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Ihr Browser wird in regelmäßigen Intervallen alle angezeigten Diagramme " +"aktualisieren. Unter 'Einstellungen' können Sie Diagramme hinzufügen und das " +"Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " +"das Zahnrad-Icon des entsprechenden Schaubilds verwenden." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Um Abfragen aus den Logs anzuzeigen, wählen Sie die relevante Zeitspanne in " +"einem Diagramm durch Drücken der linken Maustaste und markieren Sie einen " +"Bereich des Diagramms durch Ziehen. Dadurch wird eine Tabelle von " +"gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " +"um diese weiter zu analysieren." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Bitte beachten Sie:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Das Aktivieren des general_log kann die Serverlast um 5-15% steigern. Seien " +"Sie sich bewusst, dass das Erzeugen von Statistiken aus den Logs ein sehr " +"aufwändiger Prozess ist. Deshalb ist es ratsam, nur einen kleinen Zeitraum " +"auszuwählen und die gerneral_log nach der Überwachung wieder zu deaktivieren." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Schaubild hinzufügen" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Vordefiniertes Diagramm" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Status Variable(n)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Serie auswählen:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Allgemein-überwacht" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "oder Variablen-Namen eingeben:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Den Wert als Unterschied zeigen" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Divisor hinzufügen" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Einheiten an Datenwerte anfügen" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Diese Serie hinzufügen" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Serien löschen" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serien im Schaubild:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Überwachung starten" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Einführung/Einrichtung" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Umordnen/bearbeiten der Schaubilder beendet" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Hervorhebung ermöglichen" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Aktualisierungs-Intervall" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Schaubild-Spalten" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Schaubild-Anordnung" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Die Anordnungen der Schaubilder werden im Browser Local-Storage gespeichert. " +"Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " +"eingerichtet haben." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Zurücksetzen" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-Abfrageergebnis" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Erstellt von" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Dateiwachstumsgröße" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Weitere" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Start" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Gesamt Zeit:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Zeit" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Schließen" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Zeit" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "SQL-Abfrage speichern" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Titel" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10206,10 +10427,6 @@ msgstr "Werte löschen" msgid "Bookmark this SQL query:" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Überschreibe gleichnamiges Bookmark" @@ -10352,7 +10569,7 @@ msgstr "Tabellen mit Überhang auswählen" msgid "Sort" msgstr "Sortierung" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "kein(e)" @@ -10508,7 +10725,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Abfrage-Fehler" @@ -10666,7 +10883,7 @@ msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Schwerer Fehler: Auf die Navigation kann nur mit AJAX zugegriffen werden" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Änderungen gespeichert" @@ -10722,7 +10939,7 @@ msgstr "Wechseln klein/groß" msgid "Toggle relation lines" msgstr "Beziehungen anzeigen an/aus" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export Koordinaten für das PDF Schema" @@ -10782,43 +10999,43 @@ msgstr "Anlegen" msgid "Active options" msgstr "Aktive Optionen" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Seite wurde erstellt" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Seitenerstellung fehlgeschlagen" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Seite" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import von ausgewählter Seite" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Export zu der ausgewählten Seite" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Eine Seite anlegen und dahin exportieren" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Name der neuen Seite: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Export/Import skalieren" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "empfohlen" @@ -10848,7 +11065,7 @@ msgstr "Interne Verknüpfung hinzugefügt" msgid "Relation deleted" msgstr "Verknüpfung gelöscht" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fehler beim speichern der Koordinaten für den Designer." @@ -11305,219 +11522,6 @@ msgstr "" "einmal zu ändern, die Leistungsfähigkeit der Datenbank zu testen und die " "Änderungen zurückzunehmen, falls es keine klar messbaren Verbesserungen gab." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Einführung zur Überwachung" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Die phpMyAdmin-Überwachung kann Sie bei der Server-Konfiguration, und auch " -"beim Aufspühren von zeitintensiven Abfragen unterstützen. Für Letzteres " -"müssen Sie log_output auf 'TABLE' stellen und entweder slow_query_log oder " -"general_log aktivieren. Beachten Sie aber, dass das Aktivieren der " -"general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " -"erhöhen kann." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Leider unterstützt Ihr Datenbank-Servers keine Protokollierung in eine " -"Tabelle. Dies ist eine Voraussetzung für die Analyse der Datenbankprotokolle " -"mit PhpMyAdmin. Protokollierung in eine Tabelle wird von MySQL 5.1.6 und " -"höher unterstützt. Sie können dennoch die Server Diagramm-Funktionen nutzen." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Verwendung der Überwachung:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Ihr Browser wird in regelmäßigen Intervallen alle angezeigten Diagramme " -"aktualisieren. Unter 'Einstellungen' können Sie Diagramme hinzufügen und das " -"Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " -"das Zahnrad-Icon des entsprechenden Schaubilds verwenden." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Um Abfragen aus den Logs anzuzeigen, wählen Sie die relevante Zeitspanne in " -"einem Diagramm durch Drücken der linken Maustaste und markieren Sie einen " -"Bereich des Diagramms durch Ziehen. Dadurch wird eine Tabelle von " -"gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " -"um diese weiter zu analysieren." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Bitte beachten Sie:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Das Aktivieren des general_log kann die Serverlast um 5-15% steigern. Seien " -"Sie sich bewusst, dass das Erzeugen von Statistiken aus den Logs ein sehr " -"aufwändiger Prozess ist. Deshalb ist es ratsam, nur einen kleinen Zeitraum " -"auszuwählen und die gerneral_log nach der Überwachung wieder zu deaktivieren." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Schaubild hinzufügen" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Vordefiniertes Diagramm" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Status Variable(n)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Serie auswählen:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Allgemein-überwacht" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "oder Variablen-Namen eingeben:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Den Wert als Unterschied zeigen" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Divisor hinzufügen" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Einheiten an Datenwerte anfügen" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Diese Serie hinzufügen" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Serien löschen" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serien im Schaubild:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Protokoll Statistik" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Ausgewählte Zeit-Spanne:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Lösche Variablen-Werte in INSERT Abfragen um die Gruppierung zu verbessern" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"Bitte wählen Sie das Protokoll aus, von dem Statistiken generiert werden " -"sollen." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Query Analyzer" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d Sekunde" -msgstr[1] "%d Sekunden" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d Minute" -msgstr[1] "%d Minuten" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Überwachung starten" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Einführung/Einrichtung" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Umordnen/bearbeiten der Schaubilder beendet" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Hervorhebung ermöglichen" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Aktualisierungs-Intervall" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Schaubild-Spalten" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Schaubild-Anordnung" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Die Anordnungen der Schaubilder werden im Browser Local-Storage gespeichert. " -"Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " -"eingerichtet haben." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Zurücksetzen" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12260,8 +12264,8 @@ msgid "" msgstr "" "Wie oft eine Tabellensperre nicht sofort erlangt werden konnte und gewartet " "werden musste. Wenn dieser Wert hoch ist und Sie Performance-Probleme haben, " -"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre " -"Tabelle(n) zerteilen oder Replikation benutzen." +"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" +"(n) zerteilen oder Replikation benutzen." #: server_status_variables.php:743 msgid "" @@ -12333,9 +12337,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Bitte erstellen Sie einen vom Webserver beschreibbaren Ordner [em]config[/" -"em] im phpMyAdmin-Hauptverzeichnis wie in der " -"[doc@setup_script]Dokumentation[/doc] beschrieben. Ansonsten können Sie die " -"Konfiguration nur herunterladen bzw. anzeigen." +"em] im phpMyAdmin-Hauptverzeichnis wie in der [doc@setup_script]Dokumentation" +"[/doc] beschrieben. Ansonsten können Sie die Konfiguration nur herunterladen " +"bzw. anzeigen." #: setup/frames/index.inc.php:60 msgid "" @@ -12603,14 +12607,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " -"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" +"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12657,24 +12661,24 @@ msgstr "" msgid "Wrong data" msgstr "Fehlerhafte Daten" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bookmark nicht erstellt" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Ansicht als PHP-Code" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12687,21 +12691,11 @@ msgstr "" "Bearbeitungsfunktion, Kontrollkästchen, Bearbeiten, Kopieren und Löschen von " "Links sind nicht verfügbar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "SQL-Abfrage speichern" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Titel" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Keine Daten zum Anzeigen" @@ -12920,31 +12914,31 @@ msgstr "Anzuzeigende Spalte auswählen" msgid "No column selected." msgstr "Es wurden keine Datensätze ausgewählt" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Verlaufs-Report für Tabelle %s" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s wurde erstellt, Tracking von %2$s ist aktiviert." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s deaktiviert." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s aktiviert." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL Befehle ausgeführt." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12953,114 +12947,114 @@ msgstr "" "Datenbank realisieren. Bitte stellen Sie sicher, dass Sie die dafür " "benötigten Rechte besitzen." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" "Kommentieren Sie diese beiden Zeilen aus, wenn Sie diese nicht benötigen." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL Befehle exportiert." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s Schnappschuss (SQL code)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Verfolgungsdatendefinition erfolgreich gelöscht" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Verfolgungsdatenmanipulation erfolgreich gelöscht" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Befehle verfolgen" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zeige %1$s mit Datum von %2$s bis %3$s und Benutzer %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Lösche die Verlaufsdaten des Datensatzes" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Keine Daten" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "DDL Befehl" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "DML Befehl" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL Dump (Datei Download)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL Dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL Ausführung" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Export als %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Versionen anzeigen" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Verlaufs-Report für %s deaktivieren" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Jetzt deaktivieren" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Verlaufs-Report für %s aktivieren" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Jetzt aktivieren" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Version %1$s von %2$s erzeugen" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Diese Datenbeschreibungsbefehle (DDL) verfolgen:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Diese Datenbearbeitungsbefehle (DML) verfolgen:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Erzeuge Version" @@ -13461,8 +13455,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Das aktuelle Verhältnis von freiem Abfrage-Zwischenspeicher zur Größe des " "gesamten Abfrage-Zwischenspeichers ist %s%%. Es sollte über 80%% betragen" @@ -13619,8 +13613,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% aller Sortierungen verursachen temporäre Tabellen, dieser Wert sollte " "kleiner als 10%% sein." @@ -14406,6 +14400,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ msgid "Headers every %s rows" +#~ msgstr "Kopfzeilen alle %s Zeilen" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14661,8 +14658,8 @@ msgstr "concurrent_insert ist auf 0 gesetzt" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Wenn diese Option aktiviert ist, kann eine Webseite einer fremden Domäne " -#~ "phpMyAdmin in einem Frame aufrufen. Dies stellt eine potentielle " -#~ "[strong]Sicherheitslücke[/strong] für Cross-Frame Scripting Attacken dar" +#~ "phpMyAdmin in einem Frame aufrufen. Dies stellt eine potentielle [strong]" +#~ "Sicherheitslücke[/strong] für Cross-Frame Scripting Attacken dar" #~ msgid "Allow third party framing" #~ msgstr "Erlaube Frame-Einbettung durch Dritte" @@ -14700,15 +14697,14 @@ msgstr "concurrent_insert ist auf 0 gesetzt" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Wird dies auf [kbd]nested[/kbd] gesetzt, so wird der Alias des " -#~ "Tabellennamens nur benutzt, um die Tabellen gemäß der " -#~ "$cfg['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu " -#~ "verschachteln. Nur der Ordner erhält den Alias, der Tabellename bleibt " -#~ "unverändert" +#~ "Tabellennamens nur benutzt, um die Tabellen gemäß der $cfg" +#~ "['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. " +#~ "Nur der Ordner erhält den Alias, der Tabellename bleibt unverändert" #~ msgid "Display table comment instead of its name" #~ msgstr "Zeige Tabellen-Kommentar anstelle des Namens" @@ -15178,8 +15174,8 @@ msgstr "concurrent_insert ist auf 0 gesetzt" #~ "directory %s." #~ msgstr "" #~ "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte " -#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis " -#~ "%s." +#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %" +#~ "s." #~ msgid "The following queries have been executed:" #~ msgstr "Die folgenden Abfragen wurden ausgeführt:" diff --git a/po/el.po b/po/el.po index 9a4fcb8ec2..39b69383be 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-12 09:36+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: Greek \n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "Αναζήτηση:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "Αναζήτηση:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Εκτέλεση" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Όνομα κλειδιού" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Περιγραφή" @@ -106,7 +106,7 @@ msgstr "" "Το αρχείο %s δεν είναι διαθέσιμο σε αυτό το σύστημα, για αυτό επισκεφτείτε " "το www.phpmyadmin.net για περισσότερες πληροφορίες." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." @@ -134,7 +134,7 @@ msgstr "Σχόλια πίνακα:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Στήλη" @@ -157,7 +157,7 @@ msgstr "Στήλη" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Τύπος" @@ -174,7 +174,7 @@ msgstr "Τύπος" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Κενό" @@ -189,7 +189,7 @@ msgstr "Κενό" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Προεπιλογή" @@ -231,9 +231,9 @@ msgstr "Σχόλια" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Όχι" @@ -258,9 +258,9 @@ msgstr "Όχι" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ναι" @@ -312,7 +312,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Πίνακας" @@ -388,7 +388,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Βάση" @@ -396,17 +396,17 @@ msgstr "Βάση" msgid "Last version" msgstr "Τελευταία έκδοση" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Δημιουργήθηκε" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Ενημερώθηκε" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Κατάσταση" @@ -419,7 +419,7 @@ msgstr "Κατάσταση" msgid "Action" msgstr "Ενέργεια" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Εμφάνιση" @@ -435,11 +435,11 @@ msgstr "Διαγραφή δεδομένων παρακολούθησης για msgid "Drop" msgstr "Διαγραφή" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "ενεργή" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "μη ενεργή" @@ -447,11 +447,11 @@ msgstr "μη ενεργή" msgid "Versions" msgstr "Εκδόσεις" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" @@ -593,17 +593,17 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field" msgstr "" -"Επιλέξτε το «GeomFromText» από τη στήλη «Function» και επικολλήστε το " -"παρακάτω κείμενο στο πεδίο «Value»" +"Επιλέξτε το «GeomFromText» από τη στήλη «Function» και επικολλήστε το παρακάτω " +"κείμενο στο πεδίο «Value»" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " -"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" +"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -651,7 +651,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" @@ -678,7 +678,7 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -870,8 +870,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " -"%sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" +"sεδώ%s." #: index.php:521 #, php-format @@ -891,7 +891,7 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." @@ -900,7 +900,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι msgid "Do you really want to execute \"%s\"?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο το «%s»;" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" @@ -984,8 +984,8 @@ msgstr "Επαναφόρτωση δικαιωμάτων" msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Κλείσιμο" @@ -1112,13 +1112,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1157,7 +1157,7 @@ msgid "Traffic" msgstr "Κίνηση" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1177,13 +1177,14 @@ msgstr "Προσθήκη διαγράμματος στο πλέγμα" msgid "Please add at least one variable to the series" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Καμία" @@ -1285,7 +1286,7 @@ msgstr "Αλλαγή ρυθμίσεων" msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Τίτλος Διαγράμματος" @@ -1374,7 +1375,7 @@ msgstr "Επεξήγηση προϊόντος" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Χρόνος" @@ -1473,7 +1474,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" @@ -1530,7 +1531,7 @@ msgid "Cancel" msgstr "Άκυρο" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Φόρτωση" @@ -1679,7 +1680,7 @@ msgstr "Απόκρυψη παραθύρου ερωτήματος" msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1692,7 +1693,7 @@ msgstr "Επεξεργασία" msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1779,7 +1780,7 @@ msgstr "Περιεχόμενο δείκτη δεδομένων" msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Αντιγραφή" @@ -1795,7 +1796,7 @@ msgstr "Κείμενο γραμμής" msgid "Polygon" msgstr "Πολύγωνο" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Γεωμετρία" @@ -2261,8 +2262,8 @@ msgstr "Μη έγκυρη χαρακτήρες στη γραμμή %s." #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε " -"«%2$s»." +"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε «%2" +"$s»." #: libraries/Advisor.class.php:467 msgid "per second" @@ -2281,33 +2282,33 @@ msgstr "ανά ώρα" msgid "per day" msgstr "ανά ημέρα" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Το υπαρχον αρχείο ρυθμίσεων (%s) δεν είναι αναγνώσιμο." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Εσφαλμένα δικαιώματα στο αρχείο ρυθμίσεων, δεν πρέπει να είναι καθολικά " "εγγράψιμο!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Αύξουσα" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2449,14 +2450,14 @@ msgstr "Περιήγηση" msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Διαγραφή" @@ -2543,16 +2544,11 @@ msgstr "οριζόντια (στραμμένες επικεφαλίδες)" msgid "vertical" msgstr "κάθετη" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Κεφαλίδες κάθε %s εγγραφές" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2579,91 +2575,91 @@ msgstr "Ταξινόμηση ανά κλειδί" msgid "Options" msgstr "Επιλογές" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Περιληπτικά κείμενα" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Πλήρη κείμενα" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Κλειδί συσχέτισης" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Στήλη προβολής συσχέτισης" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Εμφάνιση δυαδικών περιεχομένων" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Απόκρυψη μετατροπής περιηγητή" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Καλά Γνωστό Κείμενο" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Καλά Γνωστό Δυαδικό" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Τερματισμός" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις [doc@faq3-11]ΣΑΕ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "στην εντολή" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " -"%sτεκμηρίωση%s." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" +"sτεκμηρίωση%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Εμφάνιση εγγραφών" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "συνολικά" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2672,8 +2668,8 @@ msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2684,45 +2680,45 @@ msgstr "Με τους επιλεγμένους:" msgid "Check All" msgstr "Επιλογή όλων" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Εξαγωγή" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Δημιουργία προβολής" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Οπτικοποίηση δεδομένων GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -2803,38 +2799,38 @@ msgstr "Δεν ορίστηκε ευρετήριο!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Ευρετήρια" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Μοναδικότητα" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Σύνθεση" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Σχόλιο" @@ -2876,7 +2872,7 @@ msgstr "Προβολή" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Δομή" @@ -3021,15 +3017,15 @@ msgstr[1] "Εισήχθηκαν %1$d γραμμές." msgid "Error while creating PDF:" msgstr "Σφάλμα κατά τη δημιουργία του PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Πρόσφατοι πίνακες" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Δεν υπάρχουν πρόσφατοι πίνακες" @@ -3272,7 +3268,7 @@ msgid "Maximum rows to plot" msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" @@ -3385,21 +3381,21 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι " -"-3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως " -"3.402823466E+38" +"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι -" +"3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως 3.402823466E" +"+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι " -"-1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και " +"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι -" +"1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και " "2.2250738585072014E-308 έως 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3680,7 +3676,7 @@ msgstr "Μια απαρίθμηση, η οποία έχει επιλεγεί α msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Εντολή SQL:" @@ -3739,7 +3735,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Εσωτερικό" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Δημιουργία προφίλ" @@ -4216,8 +4212,8 @@ msgstr "Επεξεργασία στηλών CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Χρησιμοποιήστε το φιλικό προς το χρήστη πρόγραμμα επεξεργασίας για την " "επεξεργασία ερωτημάτων SQL ([a@http://codemirror.net/]CodeMirror[/a]) με " @@ -4292,8 +4288,8 @@ msgid "" "Whether a warning ("Are your really sure…") should be displayed " "when you're about to lose data" msgstr "" -"Όταν μια προειδοποίηση («Είστε σίγουρος/η…») πρέπει να προβάλετε αν " -"πρόκειται να χαθούν δεδομένα" +"Όταν μια προειδοποίηση («Είστε σίγουρος/η…») πρέπει να προβάλετε αν πρόκειται " +"να χαθούν δεδομένα" #: libraries/config/messages.inc.php:45 msgid "Confirm DROP queries" @@ -4754,9 +4750,8 @@ msgstr "Τίτλοι σελίδας" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Ορίστε το κείμενο του τίτλου στο φυλλομετρητή σας. Δείτε την " "[doc@cfg_TitleTable]τεκμηρίωση[/doc] για μαγικά κείμενα που μπορούν να " @@ -4883,9 +4878,9 @@ msgid "" msgstr "" "Αν θέλετε να χρησιμοποιήσετε την υπηρεσία Εγκυροποίησης SQL, πρέπει να " "γνωρίζετε ότι [strong]όλες οι δηλώσεις SQL αποθηκεύονται ανώνυμα για " -"στατιστικούς λόγους[/strong].[br][em][a@http://sqlvalidator.mimer." -"com/]Εγκυροποιητής SQL Mimer[/a], Πνευματικά Δικαιώματα 2002 Upright " -"Database Technology. Με επιφύλαξη παντός δικαιώματος.[/em]" +"στατιστικούς λόγους[/strong].[br][em][a@http://sqlvalidator.mimer.com/]" +"Εγκυροποιητής SQL Mimer[/a], Πνευματικά Δικαιώματα 2002 Upright Database " +"Technology. Με επιφύλαξη παντός δικαιώματος.[/em]" #: libraries/config/messages.inc.php:220 msgid "Startup" @@ -5198,8 +5193,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. " -"[kbd]32M[/kbd] ([kbd]0[/kbd] για απεριόριστη)" +"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. [kbd]32M" +"[/kbd] ([kbd]0[/kbd] για απεριόριστη)" #: libraries/config/messages.inc.php:296 msgid "Memory limit" @@ -5577,8 +5572,8 @@ msgstr "Πίνακας σελιδοδεικτών" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, προτείνεται: " "[kbd]pma_column_info[/kbd]" @@ -5653,8 +5648,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή, προτείνεται: " -"[kbd]pma_designer_coords[/kbd]" +"Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή, προτείνεται: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5695,8 +5690,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: " -"[kbd]pma_history[/kbd]" +"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5760,8 +5755,8 @@ msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: " -"[kbd]pma__pdf_pages[/kbd]" +"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5805,8 +5800,8 @@ msgstr "Πρόσφατα χρησιμοποιημένος πίνακας" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Αφήστε το κενό για να μην υπάρχει υποστήριξη [a@http://wiki.phpmyadmin.net/" "pma/relation]συνδέσμων-συσχετίσεων[/a], προτείνεται: [kbd]pma__relation[/kbd]" @@ -5825,8 +5820,8 @@ msgstr "Εντολή SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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] για ένα παράδειγμα" @@ -5862,8 +5857,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: " -"[kbd]pma__table_coords[/kbd]" +"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5941,8 +5936,8 @@ msgstr "Δηλώσεις προς παρακολούθηση" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma__tracking[/kbd]" @@ -5965,11 +5960,11 @@ msgstr "Αυτόματη δημιουργία εκδόσεων" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: " -"[kbd]pma__userconfig[/kbd]" +"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -6180,11 +6175,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:" -"[kbd]anonymous[/kbd])" +"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]" +"anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Όνομα χρήστη" @@ -6350,8 +6345,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής" +"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]" +"ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -6603,7 +6598,7 @@ msgstr "Βάση(εις) δεδομένων:" msgid "Table(s):" msgstr "Πίνακας(ες):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Εγγραφές:" @@ -6652,8 +6647,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -7215,11 +7210,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " -"%sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" +"sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:133 msgid "Related Links" @@ -7234,7 +7229,7 @@ msgid "No data found for GIS visualization." msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." @@ -7354,11 +7349,11 @@ msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -7403,7 +7398,7 @@ msgstr "Προσθήκη προθέματος πίνακα:" msgid "Add prefix" msgstr "Προσθήκη προθέματος" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" @@ -7730,17 +7725,17 @@ msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Μόνο η δομή" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Δομή και δεδομένα" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Μόνο τα δεδομένα" @@ -7901,8 +7896,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -8157,13 +8152,13 @@ msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γρ #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Φιλοξενητής:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Χρόνος δημιουργίας:" @@ -8177,7 +8172,7 @@ msgstr "Έκδοση PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Βάση δεδομένων:" @@ -8525,8 +8520,8 @@ msgstr "" "επιλογή για να ορίσετε μια μορφή ημερομηνίας-ώρας. Η τρίτη επιλογή ορίζει αν " "θέλετε να δείτε την τοπική ή την παγκόσμια ώρα (χρήση «local» ή «utc» " "αντίστοιχα). Σύμφωνα με αυτό, η μορφή της ημερομηνίας έχει διαφορετική τιμή " -"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP " -"και για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." +"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP και " +"για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -9313,7 +9308,7 @@ msgstr "Χαρακτηριστικά" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Πρόσθετα" @@ -9476,7 +9471,7 @@ msgid "Library" msgstr "Βιβλιοθήκη" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Έκδοση" @@ -9942,8 +9937,8 @@ msgstr "Επισκόπηση χρηστών" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -9959,46 +9954,269 @@ msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d δευτερόλεπτο" +msgstr[1] "%d δευτερόλεπτο" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d λεπτά" +msgstr[1] "%d λεπτά" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Στατιστικά καταγραφών" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Επιλεγμένο εύρος χρόνου:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " +"ομαδοποιήση" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Αναλυτής ερωτήματος" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Οδηγίες Εποπτείας" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση " +"του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα " +"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει το " +"slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " +"παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " +"15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Δυστυχώς ο διακομιστής βάσεων δεδομένων σας δεν υποστηρίζει καταγραφή σε " +"πίνακα, κάτι που είναι προαπαιτούμενο για την ανάλυση των καταγραφών βάσεων " +"δεδομένων με το phpMyAdmin. Η καταγραφή σε πίνακα υποστηρίζεται από την " +"MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " +"χαρακτηριστικά διαγραμμάτων του διακομιστή." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Χρήση της εποπτείας:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Ο φυλλομετρητής σας θα ανανεώσει όλα τα εμφανιζόμενα διαγράμματα ανά " +"ορισμένο διάστημα. Μπορείτε να προσθέσετε διαγράμματα και να αλλάξετε το " +"ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα " +"χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Για να προβάλετε ερωτήματα από τις καταγραφές, επιλέξτε το αντίστοιχο " +"χρονικό εύρος σε οποιοδήποτε διάγραμμα έχοντας πατημένο το πλήκτρο το " +"ποντικιού και σαρώνοντας την επιφάνεια του διαγράμματος. Μόλις το " +"επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " +"μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Σημειώστε:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Η ενεργοποίηση του general_log μπορεί να αυξήσει τη φόρτωση του διακομιστή " +"κατά 10-15%. Επίσης, έχετε υπόψη ότι η δημιουργία στατιστικών από τις " +"καταγραφές είναι μια εργασία με υψηλές απαιτήσεις σε πόρους, για αυτό σας " +"προτείνουμε να επιλέξετε μόνο ένα μικρό χρονικό διάστημα και να " +"απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " +"είναι απαραίτητη η εποπτεία." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Προσθήκη διαγράμματος" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Προκαθορισμός διαγράμματος" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Μεταβλητή(ές) κατάστασης" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Επιλογή σειρών:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Συχνά εποπτευόμενα" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ή όνομα τύπου μεταβλητής:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Προβολή ως διαφορική τιμή" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Εφαρμογή διαιρέτη" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Προσθήκη αυτής της σειράς" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Εκκαθάριση σειράς" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Σειρά σε Διάγραμμα:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Έναρξη Εποπτείας" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Οδηγίες/Εγκατάσταση" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Ολοκληρώθηκε η μετακίνηση (επανατοποθέτηση) διαγραμμάτων" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Ενεργοποίηση μετακίνησης διαγραμμάτων" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Ρυθμός ανανέωσης" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Στήλες διαγράμματος" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Διευθέτηση διαγράμματος" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " +"φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Επαναφορά προεπιλογής" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "αποτέλεσμα SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Δημιουργήθηκε από:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Λεπτομερές προφίλ" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Ταξινόμηση" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Κατάσταση" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Περίληψη ανά κατάσταση" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Συνολικός Χρόνος" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Χρόνος" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Κλήσεις" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø Χρόνος" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Αποθήκευση αυτού του ερωτήματος SQL" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Ετικέτα:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10017,10 +10235,6 @@ msgstr "Καθάρισμα" msgid "Bookmark this SQL query:" msgstr "Αποθήκευση αυτού του ερωτήματος SQL:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" @@ -10160,7 +10374,7 @@ msgstr "Επιλογή πινάκων με περίσσεια" msgid "Sort" msgstr "Ταξινόμηση" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Καμία" @@ -10314,7 +10528,7 @@ msgstr "Αποτελεσματικός" msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Σφάλμα ερωτήματος" @@ -10465,7 +10679,7 @@ msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" @@ -10521,7 +10735,7 @@ msgstr "Εναλλαγή μικρά/μεγάλα" msgid "Toggle relation lines" msgstr "Εναλλαγή γραμμών συσχέτισης" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Εισαγωγή/Εξαγωγή συντεταγμένων για σχέδιο PDF" @@ -10579,39 +10793,39 @@ msgstr "Άθροιση" msgid "Active options" msgstr "Ενεργές επιλογές" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Η σελίδα δημιουργήθηκε" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Η δημιουργία σελίδας απέτυχε" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Σελίδα:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Εισαγωγή από επιλεγμένη σελίδα" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Εξαγωγή σε επιλεγμένη σελίδα" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Δημιουργία μιας σελίδας και εξαγωγή σε αυτή" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Νέο όνομα σελίδα: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "προτείνεται" @@ -10639,7 +10853,7 @@ msgstr "Η εσωτερική συσχέτιση προστέθηκε" msgid "Relation deleted" msgstr "Η συσχέτιση διαγράφηκε" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Σφάλμα αποθήκευσης συντεταγμένων για τον Σχεδιαστή." @@ -11095,216 +11309,6 @@ msgstr "" "ρύθμιση κάθε φορά, να παρατηρείτε τη βάση δεδομένων και αναιρέστε την αλλαγή " "αν δεν υπήρχε ουσιαστική βελτίωση." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Οδηγίες Εποπτείας" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση " -"του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα " -"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει " -"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " -"παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " -"15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Δυστυχώς ο διακομιστής βάσεων δεδομένων σας δεν υποστηρίζει καταγραφή σε " -"πίνακα, κάτι που είναι προαπαιτούμενο για την ανάλυση των καταγραφών βάσεων " -"δεδομένων με το phpMyAdmin. Η καταγραφή σε πίνακα υποστηρίζεται από την " -"MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " -"χαρακτηριστικά διαγραμμάτων του διακομιστή." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Χρήση της εποπτείας:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Ο φυλλομετρητής σας θα ανανεώσει όλα τα εμφανιζόμενα διαγράμματα ανά " -"ορισμένο διάστημα. Μπορείτε να προσθέσετε διαγράμματα και να αλλάξετε το " -"ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα " -"χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Για να προβάλετε ερωτήματα από τις καταγραφές, επιλέξτε το αντίστοιχο " -"χρονικό εύρος σε οποιοδήποτε διάγραμμα έχοντας πατημένο το πλήκτρο το " -"ποντικιού και σαρώνοντας την επιφάνεια του διαγράμματος. Μόλις το " -"επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " -"μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Σημειώστε:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Η ενεργοποίηση του general_log μπορεί να αυξήσει τη φόρτωση του διακομιστή " -"κατά 10-15%. Επίσης, έχετε υπόψη ότι η δημιουργία στατιστικών από τις " -"καταγραφές είναι μια εργασία με υψηλές απαιτήσεις σε πόρους, για αυτό σας " -"προτείνουμε να επιλέξετε μόνο ένα μικρό χρονικό διάστημα και να " -"απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " -"είναι απαραίτητη η εποπτεία." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Προσθήκη διαγράμματος" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Προκαθορισμός διαγράμματος" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Μεταβλητή(ές) κατάστασης" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Επιλογή σειρών:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Συχνά εποπτευόμενα" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ή όνομα τύπου μεταβλητής:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Προβολή ως διαφορική τιμή" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Εφαρμογή διαιρέτη" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Προσθήκη αυτής της σειράς" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Εκκαθάριση σειράς" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Σειρά σε Διάγραμμα:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Στατιστικά καταγραφών" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Επιλεγμένο εύρος χρόνου:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " -"ομαδοποιήση" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Αναλυτής ερωτήματος" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d δευτερόλεπτο" -msgstr[1] "%d δευτερόλεπτο" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d λεπτά" -msgstr[1] "%d λεπτά" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Έναρξη Εποπτείας" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Οδηγίες/Εγκατάσταση" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Ολοκληρώθηκε η μετακίνηση (επανατοποθέτηση) διαγραμμάτων" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Ενεργοποίηση μετακίνησης διαγραμμάτων" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Ρυθμός ανανέωσης" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Στήλες διαγράμματος" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Διευθέτηση διαγράμματος" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " -"φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Επαναφορά προεπιλογής" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12119,9 +12123,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Δημιουργήστε εγγράψιμο φάκελο διακομιστή ιστού [em]config[/em] στο φάκελο " -"μέγιστου επιπέδου phpMyAdmin όπως περιγράφετε στην " -"[doc@setup_script]τεκμηρίωση[/doc]. Διαφορετικά, θα μπορείτε μόνο να τον " -"λάβετε ή να τον προβάλετε." +"μέγιστου επιπέδου phpMyAdmin όπως περιγράφετε στην [doc@setup_script]" +"τεκμηρίωση[/doc]. Διαφορετικά, θα μπορείτε μόνο να τον λάβετε ή να τον " +"προβάλετε." #: setup/frames/index.inc.php:60 msgid "" @@ -12138,8 +12142,8 @@ msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." msgstr "" -"Αν ο διακομιστής σας έχει ρυθμιστεί να δέχεται αιτήσεις HTTPS πατήστε [a@" -"%s]αυτόν τον σύνδεσμο[/a] για χρήση ασφαλούς σύνδεσης." +"Αν ο διακομιστής σας έχει ρυθμιστεί να δέχεται αιτήσεις HTTPS πατήστε [a@%s]" +"αυτόν τον σύνδεσμο[/a] για χρήση ασφαλούς σύνδεσης." #: setup/frames/index.inc.php:68 msgid "Insecure connection" @@ -12344,8 +12348,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" -"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" +"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:310 #, php-format @@ -12386,14 +12390,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Ορίζετε τον τύπο πιστοποίησης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα " "χρήστη και κωδικό πρόσβασης για αυτόματη σύνδεση, αν και δεν προτείνεται. " "Όποιος γνωρίζει ή υποθέτει τη διεύθυνση URL του phpMyAdmin μπορεί να έχει " -"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή " -"[kbd]http[/kbd]." +"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή [kbd]" +"http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12442,24 +12446,24 @@ msgstr "" msgid "Wrong data" msgstr "Εσφαλμένα δεδομένα" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Ο σελιδοδείκτης δεν δημιουργήθηκε" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12469,19 +12473,11 @@ msgstr "" "Καννάβου, επικογής, Επεξεργασίας, Αντιγραφής και Διαγραφής δεν είναι " "διαθέσιμα." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Αποθήκευση αυτού του ερωτήματος SQL" - -#: sql.php:1191 -msgid "Label:" -msgstr "Ετικέτα:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Κανένα δεδομένο για προβολή" @@ -12689,31 +12685,31 @@ msgstr "Επιλέξτε στήλη για εμφάνιση:" msgid "No column selected." msgstr "Δεν επιλέχθηκε στήλη." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Αναφορά παρακολούθησης για τον πίνακα «%s»" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Η έκδοση %1$s δημιουργήθηκε, η παρακολούθηση του %2$s ενεργοποιήθηκε." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Παρακολούθηση του %1$s απενεργοποιήθηκε στην έκδοση %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Παρακολούθηση του %1$s ενεργοποιήθηκε στην έκδοση %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Οι δηλώσεις SQL εκτελέστηκαν." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12721,114 +12717,114 @@ msgstr "" "Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι " "προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Ο προσδιορισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Ο χειρισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Δηλώσεις παρακολούθησης" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Εμφάνιση %1$s με ημερομηνίες από %2$s έως %3$s από χρήστη %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Διαγραφή γραμμής δεδομένων παρακολούθησης από την αναφορά" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Δεν υπάρχουν δεδομένα" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Ημερομηνία" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Δήλωση ορισμού δεδομένων" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Δήλωση χειρισμού δεδομένων" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Κάδος SQL (λήψη αρχείου)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Κάδος SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" "Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Εκτέλεση SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Εξαγωγή ως %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Εμφάνιση εκδόσεων" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Απενεργοποιήση παρακολούθησης για το %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Απενεργοποιήση τώρα" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Ενεργοποίηση παρακολούθησης για το %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ενεργοποιήση τώρα" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Δημιουργία έκδοσης %1$s του %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Δημιουργία έκδοσης" @@ -13158,8 +13154,8 @@ msgid "" msgstr "" "Η λανθάνουσα μνήμη ερωτήματος είναι γνωστό ότι βελτιώνει σημαντικά την " "απόδοση, αν ρυθμιστεί σωστά. Ενεργοποιήστε τη ορίζοντας το " -"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε " -"«ΟΝ». Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." +"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε «ΟΝ». " +"Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." #: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -13240,8 +13236,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Η τρέχουσα αναλογία της ελεύθερης λανθάνουσας μνήμης ερωτήματος προς τη " "συνολική λανθάνουσα μνήμη ερωτήματος είναι %s%%. Πρέπει να είναι περισσότερο " @@ -13318,8 +13314,8 @@ msgid "" "value is, the better (This rules firing limit: 0.1%%)" msgstr "" "Ο βαθμός απομακρυσμένων ερωτημάτων προς τα εισερχόμενα ερωτήματα είναι %s%%. " -"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: " -"0,1%%)" +"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: 0,1%" +"%)" #: libraries/advisory_rules.txt:195 msgid "Query cache max size" @@ -13403,8 +13399,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Το %s%% όλων των ταξινομήσεων προκαλεί προσωρινούς πίνακες, αυτή η τιμή " "πρέπει να είναι κάτω από 10%%." @@ -13972,8 +13968,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από " -"1%%" +"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από 1%" +"%" #: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" @@ -14192,6 +14188,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Κεφαλίδες κάθε %s εγγραφές" + #~ msgid "Check if you want tp use reCaptcha on the login screen" #~ msgstr "" #~ "Επιλέξτε το αν θέλετε να χρησιμοποιήσετε reCaptcha στην οθόνη σύνδεσης" @@ -14495,9 +14494,9 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Όταν οριστεί αυτό σε [kbd]nested[/kbd], η ετικέτα του ονόματος του πίνακα " #~ "χρησιμοποιείτε μόνο για το χώρισμα/μάζεμα των πινάκων σύμφωνα με την " @@ -14700,8 +14699,8 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων " -#~ "%s;" +#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %" +#~ "s;" #~ msgid "Unknown error while uploading." #~ msgstr "Άγνωστο σφάλμα κατά την αποστολή αρχείου." diff --git a/po/en_GB.po b/po/en_GB.po index 89ba4689b7..3f883c09c7 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-31 14:26+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: English (United Kingdom) \n" -"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Search:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Search:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Go" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Description" @@ -109,7 +109,7 @@ msgstr "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s has been created." @@ -137,7 +137,7 @@ msgstr "Table comments:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Column" @@ -160,7 +160,7 @@ msgstr "Column" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Type" @@ -177,7 +177,7 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -192,7 +192,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Default" @@ -234,9 +234,9 @@ msgstr "Comments" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "No" @@ -261,9 +261,9 @@ msgstr "No" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Yes" @@ -315,7 +315,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Table" @@ -391,7 +391,7 @@ msgstr "Tracked tables" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Database" @@ -399,17 +399,17 @@ msgstr "Database" msgid "Last version" msgstr "Last version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Created" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Updated" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -422,7 +422,7 @@ msgstr "Status" msgid "Action" msgstr "Action" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Show" @@ -438,11 +438,11 @@ msgstr "Delete tracking data for this table" msgid "Drop" msgstr "Drop" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "active" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "not active" @@ -450,11 +450,11 @@ msgstr "not active" msgid "Versions" msgstr "Versions" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Tracking report" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Structure snapshot" @@ -601,11 +601,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -650,7 +650,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plug-ins, please check your installation!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -676,7 +676,7 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -899,7 +899,7 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." @@ -908,7 +908,7 @@ msgstr "\"DROP DATABASE\" statements are disabled." msgid "Do you really want to execute \"%s\"?" msgstr "Do you really want to execute \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -992,8 +992,8 @@ msgstr "Reloading Privileges" msgid "Removing Selected Users" msgstr "Removing Selected Users" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Close" @@ -1120,13 +1120,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1165,7 +1165,7 @@ msgid "Traffic" msgstr "Traffic" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Settings" @@ -1185,13 +1185,14 @@ msgstr "Add chart to grid" msgid "Please add at least one variable to the series" msgstr "Please add at least one variable to the series" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "None" @@ -1291,7 +1292,7 @@ msgstr "Change settings" msgid "Current settings" msgstr "Current settings" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Chart Title" @@ -1377,7 +1378,7 @@ msgstr "Explain output" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Time" @@ -1472,7 +1473,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1529,7 +1530,7 @@ msgid "Cancel" msgstr "Cancel" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Loading" @@ -1678,7 +1679,7 @@ msgstr "Hide query box" msgid "Show query box" msgstr "Show query box" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1691,7 +1692,7 @@ msgstr "Edit" msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1773,7 +1774,7 @@ msgstr "Data point content" msgid "Ignore" msgstr "Ignore" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copy" @@ -1789,7 +1790,7 @@ msgstr "Linestring" msgid "Polygon" msgstr "Polygon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometry" @@ -2269,32 +2270,32 @@ msgstr "per hour" msgid "per day" msgstr "per day" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Existing configuration file (%s) is not readable." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Wrong permissions on configuration file, should not be world writeable!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Font size" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascending" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2448,14 +2449,14 @@ msgstr "Browse" msgid "Delete the matches for the %s table?" msgstr "Delete the matches for the %s table?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Delete" @@ -2546,16 +2547,11 @@ msgstr "horizontal (rotated headers)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Headers every %s rows" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2582,91 +2578,91 @@ msgstr "Sort by key" msgid "Options" msgstr "Options" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Partial texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Full texts" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relational key" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relational display column" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Show binary contents" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Show binary contents as HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Hide browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Showing rows" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2675,8 +2671,8 @@ msgstr "Query took %01.4f sec" msgid "With selected:" msgstr "With selected:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2687,45 +2683,45 @@ msgstr "With selected:" msgid "Check All" msgstr "Check All" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Create view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Query results operations" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Print view" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Display chart" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualise GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link not found" @@ -2803,38 +2799,38 @@ msgstr "No index defined!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexes" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Packed" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Collation" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comment" @@ -2876,7 +2872,7 @@ msgstr "View" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structure" @@ -3021,15 +3017,15 @@ msgstr[1] "%1$d rows inserted." msgid "Error while creating PDF:" msgstr "Error while creating PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Could not save recent table" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Recent tables" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "There are no recent tables" @@ -3274,7 +3270,7 @@ msgid "Maximum rows to plot" msgstr "Maximum rows to plot" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Browse foreign values" @@ -3384,20 +3380,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3675,7 +3671,7 @@ msgstr "An enumeration, chosen from the list of defined values" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3736,7 +3732,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -4212,11 +4208,11 @@ msgstr "CHAR columns editing" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" #: libraries/config/messages.inc.php:31 msgid "Enable CodeMirror" @@ -4760,13 +4756,11 @@ msgstr "Page titles" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." #: libraries/config/messages.inc.php:192 #: libraries/navigation/NavigationHeader.class.php:204 @@ -5563,11 +5557,11 @@ msgstr "Bookmark table" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5788,11 +5782,11 @@ msgstr "Recently used table" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 msgid "Relation table" @@ -5808,11 +5802,11 @@ msgstr "SHOW DATABASES command" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5925,11 +5919,11 @@ msgstr "Statements to track" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5949,11 +5943,11 @@ msgstr "Automatically create versions" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -6160,8 +6154,8 @@ msgstr "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Username" @@ -6573,7 +6567,7 @@ msgstr "Database(s):" msgid "Table(s):" msgstr "Table(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rows:" @@ -6622,12 +6616,12 @@ msgstr ", @TABLE@ will become the table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7175,11 +7169,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:133 msgid "Related Links" @@ -7194,7 +7188,7 @@ msgid "No data found for GIS visualization." msgstr "No data found for GIS visualisation." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -7315,11 +7309,11 @@ msgid "" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -7370,7 +7364,7 @@ msgstr "Add table prefix" msgid "Add prefix" msgstr "Add prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Do you really want to execute the following query?" @@ -7699,17 +7693,17 @@ msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Structure only" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structure and data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data only" @@ -7872,11 +7866,11 @@ msgstr "Welcome to %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8132,7 +8126,7 @@ msgstr "Put columns names in the first row" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8140,7 +8134,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8158,7 +8152,7 @@ msgstr "PHP Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9295,7 +9289,7 @@ msgstr "Attributes" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9460,7 +9454,7 @@ msgid "Library" msgstr "Library" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9917,13 +9911,13 @@ msgstr "Users overview" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." #: libraries/server_privileges.lib.php:3036 msgid "The selected user was not found in the privilege table." @@ -9933,63 +9927,280 @@ msgstr "The selected user was not found in the privilege table." msgid "You have added a new user." msgstr "You have added a new user." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d second" +msgstr[1] "%d seconds" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minute" +msgstr[1] "%d minutes" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Log statistics" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Selected time range:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Remove variable data in INSERT statements for better grouping" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Choose from which log you want the statistics to be generated from." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Results are grouped by query text." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Query analyser" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitor Instructions" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"The phpMyAdmin Monitor can assist you in optimising the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analysing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Using the monitor:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyse them." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Please note:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Add chart" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Preset chart" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Status variable(s)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Select series:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Commonly monitored" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "or type variable name:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Display as differential value" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Apply a divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Append unit to data values" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Add this series" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Clear series" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series in Chart:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Start Monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instructions/Setup" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Done dragging (rearranging) charts" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Enable charts dragging" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Refresh rate" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Chart columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Chart arrangement" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Reset to default" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL result" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generated by" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Data file grow size" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Other" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Start" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total time:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Time" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Close" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Time" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bookmark this SQL query" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Let every user access this bookmark" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10010,10 +10221,6 @@ msgstr "Clear" msgid "Bookmark this SQL query:" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Let every user access this bookmark" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" @@ -10152,7 +10359,7 @@ msgstr "Check tables having overhead" msgid "Sort" msgstr "Sort" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "None" @@ -10308,7 +10515,7 @@ msgstr "Effective" msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Query error" @@ -10465,7 +10672,7 @@ msgstr "Error in ZIP archive:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fatal error: The navigation can only be accessed via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modifications have been saved" @@ -10521,7 +10728,7 @@ msgstr "Toggle small/big" msgid "Toggle relation lines" msgstr "Toggle relation lines" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" @@ -10581,43 +10788,43 @@ msgstr "Aggregate" msgid "Active options" msgstr "Active options" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Page has been created" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Page creation failed" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Page" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import from selected page" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Export to selected page" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Create a page and export to it" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "New page name: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Export/Import to scale" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recommended" @@ -10645,7 +10852,7 @@ msgstr "Internal relation added" msgid "Relation deleted" msgstr "Relation deleted" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." @@ -11088,208 +11295,6 @@ msgstr "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitor Instructions" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"The phpMyAdmin Monitor can assist you in optimising the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analysing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Using the monitor:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyse them." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Please note:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Add chart" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Preset chart" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Status variable(s)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Select series:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Commonly monitored" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "or type variable name:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Display as differential value" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Apply a divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Append unit to data values" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Add this series" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Clear series" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series in Chart:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Log statistics" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Selected time range:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Remove variable data in INSERT statements for better grouping" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Choose from which log you want the statistics to be generated from." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Results are grouped by query text." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Query analyser" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d second" -msgstr[1] "%d seconds" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minute" -msgstr[1] "%d minutes" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Start Monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instructions/Setup" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Done dragging (rearranging) charts" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Enable charts dragging" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Refresh rate" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Chart columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Chart arrangement" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Reset to default" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12322,14 +12327,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12373,24 +12378,24 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters." msgid "Wrong data" msgstr "Wrong data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bookmark not created" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12402,21 +12407,11 @@ msgstr "" "This table does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bookmark this SQL query" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Label" - #: tbl_chart.php:38 msgid "No data to display" msgstr "No data to display" @@ -12630,31 +12625,31 @@ msgstr "Choose column to display" msgid "No column selected." msgstr "No column selected." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking report for table `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s was created, tracking for %2$s is active." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking for %1$s was deactivated at version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking for %1$s was activated at version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL statements executed." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12662,113 +12657,113 @@ msgstr "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comment out these two lines if you do not need them." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL statements exported. Please copy the dump or execute it." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL code)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Tracking data definition successfully deleted" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking data manipulation successfully deleted" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Tracking statements" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Delete tracking data row from report" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "No data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Date" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Data definition statement" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Data manipulation statement" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dump (file download)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "This option will replace your table and contained data." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL execution" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Export as %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Show versions" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deactivate tracking for %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deactivate now" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activate tracking for %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activate now" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Create version %1$s of %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Track these data definition statements:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Track these data manipulation statements:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Create version" @@ -13158,11 +13153,11 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" #: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" @@ -13312,11 +13307,11 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." #: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" @@ -14053,6 +14048,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is set to 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Headers every %s rows" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14344,14 +14342,14 @@ msgstr "concurrent_insert is set to 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgid "Display table comment instead of its name" #~ msgstr "Display table comment instead of its name" diff --git a/po/es.po b/po/es.po index 318923b8e4..7ac32093a6 100644 --- a/po/es.po +++ b/po/es.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-12 18:24+0200\n" "Last-Translator: Matías Bellone \n" -"Language-Team: Spanish " -"\n" -"Language: es\n" +"Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Buscar:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Buscar:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Continuar" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nombre de la clave" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descripción" @@ -107,7 +107,7 @@ msgstr "" "El archivo %s no está disponible en este sistema, visite www.phpmyadmin.net " "para más información." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "La base de datos %1$s ha sido creada." @@ -135,7 +135,7 @@ msgstr "Comentarios de la tabla:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Columna" @@ -158,7 +158,7 @@ msgstr "Columna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipo" @@ -175,7 +175,7 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulo" @@ -190,7 +190,7 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Predeterminado" @@ -232,9 +232,9 @@ msgstr "Comentarios" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "No" @@ -259,9 +259,9 @@ msgstr "No" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Sí" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabla" @@ -391,7 +391,7 @@ msgstr "Tablas con seguimiento" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de datos" @@ -399,17 +399,17 @@ msgstr "Base de datos" msgid "Last version" msgstr "Última versión" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Creado/a" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Actualizado" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Estado actual" @@ -422,7 +422,7 @@ msgstr "Estado actual" msgid "Action" msgstr "Acción" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Mostrar" @@ -438,11 +438,11 @@ msgstr "Borrar los datos de seguimiento para esta tabla" msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "activo/a" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "no activo/a" @@ -450,11 +450,11 @@ msgstr "no activo/a" msgid "Versions" msgstr "Versiones" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Informe de seguimiento" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Instantánea de la estructura" @@ -598,14 +598,14 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field" msgstr "" -"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena " -"ubicada debajo en el campo \"Valor\"" +"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada " +"debajo en el campo \"Valor\"" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Probablemente intentó cargar un archivo demasiado grande. Revise %sla " "documentation%s para hallar modos de superar esta limitación." @@ -656,7 +656,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "No se pudieron cargar los plugins de importación. ¡Revise su instalación!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" @@ -683,7 +683,7 @@ msgstr "" "usualmente significa que phpMyAdmin no será capaz de completar esta " "importación a menos que usted incremente el tiempo de ejecución de php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -876,8 +876,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " -"%sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" +"sPulsa aquí para averiguar por qué%s." #: index.php:521 #, php-format @@ -897,7 +897,7 @@ msgstr "" "El servidor está utilizando Suhosin. Refiérase a la %sdocumentación%s por " "posibles inconvenientes." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." @@ -906,7 +906,7 @@ msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." msgid "Do you really want to execute \"%s\"?" msgstr "¿Realmente desea ejecutar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -990,8 +990,8 @@ msgstr "Recargando Privilegios" msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Cerrar" @@ -1118,13 +1118,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1166,7 +1166,7 @@ msgstr "Tráfico" # This is the text showed in the tab #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Configuración" @@ -1186,13 +1186,14 @@ msgstr "Agregar gráfico a la grilla" msgid "Please add at least one variable to the series" msgstr "Agregue al menos una variable a la serie" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ninguna" @@ -1292,7 +1293,7 @@ msgstr "Cambiar configuraciones" msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Título del gráfico" @@ -1381,7 +1382,7 @@ msgstr "Explicar salida" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tiempo" @@ -1479,7 +1480,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1536,7 +1537,7 @@ msgid "Cancel" msgstr "Cancelar" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Cargando" @@ -1686,7 +1687,7 @@ msgstr "Ocultar ventana de consultas SQL" msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1699,7 +1700,7 @@ msgstr "Editar" msgid "No rows selected" msgstr "No se seleccionaron filas" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1783,7 +1784,7 @@ msgstr "Contenido del punto de datos" msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copiar" @@ -1799,7 +1800,7 @@ msgstr "Cadena de líneas" msgid "Polygon" msgstr "Polígono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometría" @@ -2290,33 +2291,33 @@ msgstr "por hora" msgid "per day" msgstr "por día" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "El archivo de configuración existente (%s) no pudo ser leído." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisos incorrectos en el archivo de configuración ¡cualquiera no debería " "poder modificarlo!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Tamaño de fuente" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2460,14 +2461,14 @@ msgstr "Examinar" msgid "Delete the matches for the %s table?" msgstr "¿Eliminar las coincidencias para la tabla %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Borrar" @@ -2554,16 +2555,11 @@ msgstr "horizontal (encabezados rotados)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeceras cada %s filas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Ordenar según la clave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2590,93 +2586,93 @@ msgstr "Ordenar según la clave" msgid "Options" msgstr "Opciones" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Textos parciales" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Clave relacional" # Display option apparently related to # http://www.phpmyadmin.net/documentation/#relation -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Mostrar columna de relación" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Mostrar contenido binario" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Mostrar contenido BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar contenido binario como HEXadecimal" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Ocultar transformación del navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Texto muy conocido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Binario muy conocido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Matar el proceso" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Podría ser aproximado. Ver [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "en la consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista tiene al menos este número de filas. Refiérase a la " -"%sdocumentation%s." +"Esta vista tiene al menos este número de filas. Refiérase a la %" +"sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2685,8 +2681,8 @@ msgstr "La consulta tardó %01.4f seg" msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2697,45 +2693,45 @@ msgstr "Para los elementos que están marcados:" msgid "Check All" msgstr "Marcar todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Crear vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Vista de impresión" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualizar datos GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "No se encontró el enlace" @@ -2816,38 +2812,38 @@ msgstr "¡No se ha definido ningún índice!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalidad" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Cotejamiento" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentario" @@ -2889,7 +2885,7 @@ msgstr "Visualizar" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estructura" @@ -3034,15 +3030,15 @@ msgstr[1] "%1$d filas insertadas." msgid "Error while creating PDF:" msgstr "Error al crear PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "No se pudo guardar la tabla reciente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tablas recientes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "No existen tablas recientes" @@ -3215,8 +3211,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Falló la limpieza de las preferencia de interfaz de tablas (ver " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Falló la limpieza de las preferencia de interfaz de tablas (ver $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1603 #, php-format @@ -3287,7 +3283,7 @@ msgid "Maximum rows to plot" msgstr "Máximo número de filas a graficar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" @@ -3399,16 +3395,16 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Un número de coma flotante pequeño; los valores posibles son de -3.402823466E" "+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un número de coma flotante de precisión doble; los valores permitidos son de " @@ -3452,8 +3448,8 @@ msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a " -"«%2$s»" +"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a «%2" +"$s»" #: libraries/Types.class.php:324 msgid "" @@ -3553,8 +3549,8 @@ msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 " -"- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " +"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 - " +"1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " "indica la cantidad de bytes en el valor" #: libraries/Types.class.php:348 @@ -3580,9 +3576,9 @@ msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de " -"4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que " -"indica la longitud del valor" +"Una columna de bloque de texto («BLOB») con una longitud máxima de 4294967295 " +"(2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que indica la " +"longitud del valor" #: libraries/Types.class.php:354 msgid "" @@ -3702,7 +3698,7 @@ msgstr "Una enumeración, elegida de una lista de valores definidos" msgid "Max: %s%s" msgstr "Máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "consulta SQL:" @@ -3761,7 +3757,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línea" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfilando" @@ -4233,8 +4229,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Define qué tipo de control de edición se debe usar para los campos CHAR y " -"VARCHAR; [kbd]input[/kbd] - permite limitar la longitud del input, " -"[kbd]textarea[/kbd] - permite líneas nuevas en los campos" +"VARCHAR; [kbd]input[/kbd] - permite limitar la longitud del input, [kbd]" +"textarea[/kbd] - permite líneas nuevas en los campos" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4242,8 +4238,8 @@ msgstr "Edición de columnas CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Utilizar el editor SQL ([a@http://codemirror.net/]CodeMirror[/a]) con " "resaltado de sintáxis y números de línea" @@ -4786,9 +4782,8 @@ msgstr "Títulos de página" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Especificar el texto de la barra de título del navegador. Consulte la " "[doc@cfg_TitleTable]documentación[/doc] para ver las palabras mágicas que " @@ -4913,8 +4908,8 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Si quiere usar el servicio de Validación de SQL, debería saber que " -"[strong]todas las sentencias SQL son almacenadas de forma anónima para uso " +"Si quiere usar el servicio de Validación de SQL, debería saber que [strong]" +"todas las sentencias SQL son almacenadas de forma anónima para uso " "estadístico[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL " "Validator[/a], Copyright 2002 Upright Database Technology.Todos los derechos " "reservados.[/em]" @@ -5609,11 +5604,11 @@ msgstr "Agregar tabla a favoritos" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: " -"[kbd]pma__column_info[/kbd]" +"Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5684,8 +5679,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Dejar en blanco para evitar el soporte de diseñador, sugerido: " -"[kbd]pma__designer_coords[/kbd]" +"Dejar en blanco para evitar el soporte de diseñador, sugerido: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5792,8 +5787,8 @@ msgstr "Contraseña para config auth" 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]" +"Dejar en blanco para evitar soporte para esquema en PDF, sugerido: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5807,8 +5802,8 @@ msgid "" msgstr "" "Base de datos usada para relaciones, favoritos, y características de los " "PDF. Ver [a@http://wiki.cihar.com/pma/pmadb]pmadb[/a] para información " -"completa. Deje en blanco para que no exita soporte. Predeterminado: " -"[kbd]phpmyadmin[/kbd]" +"completa. Deje en blanco para que no exita soporte. Predeterminado: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5838,8 +5833,8 @@ msgstr "Tabla recientemente utilizada" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.phpmyadmin.net/pma/" "relation]relation-links[/a], de manera predeterminada: [kbd]pma__relation[/" @@ -5859,8 +5854,8 @@ msgstr "Comando SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Ver [a@http://wiki.cihar.com/pma/auth_types#signon]tipos de autenticación[/" "a] para conocer un ejemplo" @@ -5896,8 +5891,8 @@ 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]" +"Dejar en blanco para evitar soporte de esquema en PDF, sugerido: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5976,8 +5971,8 @@ msgstr "Sentencias a hacer seguimiento" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor " "sugerido: [kbd]pma__tracking[/kbd]" @@ -6000,8 +5995,8 @@ msgstr "Crear versiones automáticamente" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Deje en blanco para evitar el almacenamiento de preferencias en la base de " "datos, valor sugerido: [kbd]pma__userconfig[/kbd]" @@ -6129,8 +6124,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6214,8 +6209,8 @@ msgstr "" "Si se posee un nombre de usuario propio, especifícalo aquí (valor por " "defecto: [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nombre de usuario" @@ -6381,8 +6376,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" 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" +"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:530 msgid "ZIP" @@ -6638,7 +6633,7 @@ msgstr "Base(s) de datos:" msgid "Table(s):" msgstr "Tabla(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Filas:" @@ -6687,8 +6682,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -7255,8 +7250,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -7274,7 +7269,7 @@ msgid "No data found for GIS visualization." msgstr "No se encontraron datos para la visualización GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)." @@ -7395,11 +7390,11 @@ msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -7445,7 +7440,7 @@ msgstr "Agregar prefijo a la tabla:" msgid "Add prefix" msgstr "Agregar prefijo" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" @@ -7774,17 +7769,17 @@ msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Únicamente la estructura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estructura y datos" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Solamente datos" @@ -7945,8 +7940,8 @@ msgstr "Bienvenido a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -8201,13 +8196,13 @@ msgstr "Poner los nombres de campo en la primera fila:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Servidor:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Tiempo de generación:" @@ -8221,7 +8216,7 @@ msgstr "Versión de PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Base de datos:" @@ -8417,8 +8412,8 @@ msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" -"La primer línea del archivo contiene los nombres de columna de la tabla " -"(si no está activado la primera línea será parte de los datos)" +"La primer línea del archivo contiene los nombres de columna de la tabla " +"(si no está activado la primera línea será parte de los datos)" #: libraries/plugins/import/ImportCsv.class.php:72 msgid "" @@ -8481,8 +8476,8 @@ msgstr "El formato de los datos mediawiki no es válido en la línea:
%s." #: libraries/plugins/import/ImportOds.class.php:88 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -"Importar porcentakes como decimales propios (por ejemplo: 12.00% " -"como .12)" +"Importar porcentakes como decimales propios (por ejemplo: 12.00% como .12)" +"" #: libraries/plugins/import/ImportOds.class.php:94 msgid "Import currencies (ex. $5.00 to 5.00)" @@ -8499,7 +8494,6 @@ msgstr "" "problema e intente nuevamente." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "¡No se pudo procesar la hoja de cálculo Open Document!" @@ -8573,8 +8567,8 @@ msgstr "" "opción es para especificar un formato de fecha/hora diferente. La tercera " "opción determina si usted quiere ver la fecha local o la UTC (use las " "cadenas \"local\" o \"utc\"). Según eso, el formato de la fecha tendrá un " -"valor diferente - para \"local\" mire la documentación de la función " -"strftime() de PHP y para \"utc\" se hace usando la función gmdate()." +"valor diferente - para \"local\" mire la documentación de la función strftime" +"() de PHP y para \"utc\" se hace usando la función gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -8618,9 +8612,8 @@ msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." msgstr "" -"Miestra el contenido de la columna como es, sin pasarlo por " -"htmlspecialchars(). Esto quiere decir que se asume que la columna contiene " -"HTML válido." +"Miestra el contenido de la columna como es, sin pasarlo por htmlspecialchars" +"(). Esto quiere decir que se asume que la columna contiene HTML válido." #: libraries/plugins/transformations/abstract/HexTransformationsPlugin.class.php:31 msgid "" @@ -9356,7 +9349,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9520,7 +9513,7 @@ msgid "Library" msgstr "Biblioteca" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versión" @@ -9990,8 +9983,8 @@ msgstr "Vista global de usuarios" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " @@ -10007,46 +10000,266 @@ msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segundo" +msgstr[1] "%d segundos" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estadísticas de registros" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Rango de tiempo seleccionado:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Elegir el registro del que desea generar estadísticas." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Los resultados se agruparán por el texto de la consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizador de consultas" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrucciones de monitorización" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"El Monitorizador de phpMyAdmin puede asistir en la optimización de la " +"configuración del servidor y rastrear consultas que toman mucho tiempo. Para " +"esto último necesitará que «log_output» esté definido como 'TABLE' y tener " +"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» " +"produce mucha información y aumenta la carga en el servidor hasta en un 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Desafortunadamente, su servidor de base de datos no soporta almacenar " +"registros a una base de datos, lo que es un requisito para analizar " +"registros de la base de datos con phpMyAdmin. Almacenar registros a una " +"tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " +"utilizar las funcionalidades para graficación del servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilizando el monitorizador:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"El navegador actualizará a intervalos regulares todos los gráficos " +"mostrados. Puede agregar gráficos y cambiar la velocidad de actualización en " +"la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " +"de rueda dentada en cada gráfico." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Para mostrar las consultas de los registros, seleccione el intervalo de " +"tiempo correspondiente en cualquier gráfico manteniendo pulsado el botón " +"izquierdo y arrastrando sobre el gráfico. Una vez confirmado, esto cargará " +"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " +"SELECT para analizarla." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Notar que:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activar «general_log» puede aumentar la carga en el servidor en 5-15%. " +"También esté al tanto que generar estadísticas de los registros es una tarea " +"muy intensiva por lo que se recomienda seleccionar un período de tiempo lo " +"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " +"que ya no se necesite monitorizar." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Agregar gráfico" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gráfico predefinido" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variable(s) de estado" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Seleccionar serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Monitorizaciones comunes" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "o ingrese el nombre de variable:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Mostrar como un valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar una división" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Agregar unidad a los valores" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Agregar esta serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Vaciar serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series en el gráfico:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Iniciar monitorización" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrucciones/Configuración" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Se finalizó el arrastre (reorganización) de gráficos" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Permitir arrastrar gráficos" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Velocidad de actualización" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Columnas del gráfico" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Ordenación de los gráficos" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"La ordenación de los gráficos es almacenada en el almacenamiento local del " +"navegador. Sería recomendable exportarla si tiene una configuración " +"complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Restaurar valor predeterminado" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Generado por:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Perfilación detallada" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Orden" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Resumen por estado" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Tiempo Total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% de Tiempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Llamadas" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø de Tiempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Guardar esta consulta en favoritos" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etiqueta:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permitir que todo usuario pueda acceder a este favorito" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10065,10 +10278,6 @@ msgstr "Limpiar" msgid "Bookmark this SQL query:" msgstr "Guardar esta consulta en favoritos:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permitir que todo usuario pueda acceder a este favorito" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Reemplazar el favorito existente que tenga el mismo nombre" @@ -10210,7 +10419,7 @@ msgstr "Marcar las tablas con residuo a depurar" msgid "Sort" msgstr "Ordenar" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ninguna" @@ -10364,7 +10573,7 @@ msgstr "Efectivo/a" msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Errores de consulta" @@ -10518,7 +10727,7 @@ msgstr "Error en el archivo ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: sólo se puede acceder a la navegación mediante AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" @@ -10574,7 +10783,7 @@ msgstr "Alterne entre pequeño y grande" msgid "Toggle relation lines" msgstr "Conmutar líneas de relación" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para el esquema PDF" @@ -10633,39 +10842,39 @@ msgstr "Agregar" msgid "Active options" msgstr "Opciones activas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Se creó la página" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Falló la creación de la página" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Página:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar de la página seleccionada" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportar a la página seleccionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crear una página y exportar a ella" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nuevo nombre de página: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exporte/Importe a escala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomendado" @@ -10693,7 +10902,7 @@ msgstr "Se añadió la relación interna" msgid "Relation deleted" msgstr "La relación fue eliminada" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Error guardando las coordenadas para el Diseñador." @@ -11151,214 +11360,6 @@ msgstr "" "la vez, observar y medir la base de datos, y revertir el cambio si no hubo " "una mejora diferenciable." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrucciones de monitorización" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"El Monitorizador de phpMyAdmin puede asistir en la optimización de la " -"configuración del servidor y rastrear consultas que toman mucho tiempo. Para " -"esto último necesitará que «log_output» esté definido como 'TABLE' y tener " -"activado «slow_query_log» o «general_log». Note, sin embargo, que " -"«general_log» produce mucha información y aumenta la carga en el servidor " -"hasta en un 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Desafortunadamente, su servidor de base de datos no soporta almacenar " -"registros a una base de datos, lo que es un requisito para analizar " -"registros de la base de datos con phpMyAdmin. Almacenar registros a una " -"tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " -"utilizar las funcionalidades para graficación del servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilizando el monitorizador:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"El navegador actualizará a intervalos regulares todos los gráficos " -"mostrados. Puede agregar gráficos y cambiar la velocidad de actualización en " -"la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " -"de rueda dentada en cada gráfico." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Para mostrar las consultas de los registros, seleccione el intervalo de " -"tiempo correspondiente en cualquier gráfico manteniendo pulsado el botón " -"izquierdo y arrastrando sobre el gráfico. Una vez confirmado, esto cargará " -"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " -"SELECT para analizarla." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Notar que:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activar «general_log» puede aumentar la carga en el servidor en 5-15%. " -"También esté al tanto que generar estadísticas de los registros es una tarea " -"muy intensiva por lo que se recomienda seleccionar un período de tiempo lo " -"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " -"que ya no se necesite monitorizar." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Agregar gráfico" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Gráfico predefinido" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variable(s) de estado" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Seleccionar serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Monitorizaciones comunes" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "o ingrese el nombre de variable:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Mostrar como un valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar una división" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Agregar unidad a los valores" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Agregar esta serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Vaciar serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series en el gráfico:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estadísticas de registros" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Rango de tiempo seleccionado:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Elegir el registro del que desea generar estadísticas." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Los resultados se agruparán por el texto de la consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizador de consultas" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segundo" -msgstr[1] "%d segundos" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minutos" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Iniciar monitorización" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrucciones/Configuración" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Se finalizó el arrastre (reorganización) de gráficos" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Permitir arrastrar gráficos" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Velocidad de actualización" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Columnas del gráfico" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Ordenación de los gráficos" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"La ordenación de los gráficos es almacenada en el almacenamiento local del " -"navegador. Sería recomendable exportarla si tiene una configuración " -"complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Restaurar valor predeterminado" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12431,15 +12432,15 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Usted definió el tipo de autenticación [kbd]config[/kbd] e incluyó nombre de " "usuario y contraseña para iniciar sesión en forma automática, lo que no es " "una opción deseable para servidores públicos. Cualquiera que conozca o " "adivine su URL de phpMyAdmin puede acceder directamente a su consola de " -"phpMyAdmin. Cambie al %stipo de autenticación%s a [kbd]cookie[/kbd] o " -"[kbd]http[/kbd]." +"phpMyAdmin. Cambie al %stipo de autenticación%s a [kbd]cookie[/kbd] o [kbd]" +"http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12485,25 +12486,25 @@ msgstr "" msgid "Wrong data" msgstr "Datos incorrectos" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "No se creó el favorito" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12512,19 +12513,11 @@ msgstr "" "La tabla %s no contiene una columna única. La edición de la grilla y los " "enlaces de copiado, eliminación y edición no están disponibles." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Guardar esta consulta en favoritos" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etiqueta:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "No hay datos para mostrar" @@ -12731,31 +12724,31 @@ msgstr "Elegir la columna a mostrar:" msgid "No column selected." msgstr "No se seleccionaron columnas." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimiento para la tabla `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Se ha creado la versión %1$s, se ha activado el seguimiento para %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Seguimiento para %1$s desactivado en versión %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Seguimiento de %1$s activado en versión %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Sentencias SQL ejecutadas." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12763,113 +12756,113 @@ msgstr "" "Puede ejecutar el volcado creando y utilizando una base de datos temporal. " "Asegúrese de tener los privilegios para poder hacerlo." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comenta estas dos líneas si no las necesitas." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Sentencias SQL exportadas. Copia el volcado o ejecútalo." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Captura de la versión %s (código SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Definición de seguimiento de datos eliminado exitosamente" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulación de seguimiento de datos eliminada exitosamente" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Realizando el seguimiento de las sentencias" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Muestra %1$s con fechas de %2$s a %3$s por parte del usuario %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Borrar fila de seguimiento de datos del reporte" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "No hay datos" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Fecha" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Sentencia de definición de datos" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Sentencia de manipulación de datos" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Volcado SQL (descarga de archivo)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Volcado SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Esta opción sustituirá tu tabla y los datos que contiene." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Ejecución SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostrar versiones" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar el seguimiento para %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desactivar ahora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activar el seguimiento para %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activar ahora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Hacer un seguimiento de estas sentencias de definición de datos:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crear versión" @@ -12972,8 +12965,8 @@ msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" -"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen " -"en el registro de consultas lentas" +"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen en " +"el registro de consultas lentas" #: libraries/advisory_rules.txt:68 #, php-format @@ -13040,8 +13033,8 @@ msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" -"Active el registro de consultas lenta configurando «log_slow_queries» a " -"'ON'. Esto ayudará a analizar consultas con mala performance." +"Active el registro de consultas lenta configurando «log_slow_queries» a 'ON'. " +"Esto ayudará a analizar consultas con mala performance." #: libraries/advisory_rules.txt:89 msgid "log_slow_queries is set to 'OFF'" @@ -13198,8 +13191,8 @@ msgid "" msgstr "" "Se sabe que el caché de consultas puede mejorar la performance enormemente " "si está correctamente configurado. Actívelo definiendo «query_cache_size» a " -"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. " -"Notar que: si está utilizando memcached ignore esta recomendación." +"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. Notar " +"que: si está utilizando memcached ignore esta recomendación." #: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -13276,8 +13269,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "La tasa actual de memoria libre del caché de consultas respecto del tamaño " "total es %s%%. Debería ser mayor al 80%%" @@ -13435,8 +13428,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todas las ordenaciones causan tablas temporales, este valor debería " "de ser menor a 10%%." @@ -13499,8 +13492,8 @@ msgstr "" #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" -"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor " -"a 1 por hora" +"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor a " +"1 por hora" #: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" @@ -13608,8 +13601,7 @@ msgstr "" #: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" -msgstr "" -"Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" +msgstr "Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" #: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" @@ -13633,14 +13625,13 @@ msgid "" "mentioned in the beginning of an Article by the Pythian Group" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " -"embargo, algunas tablas temporales son siempre escritas a disco " -"independientemente del valor de estas variables. Para eliminarlas deberá re-" -"escribir las consultas para evitar estas condiciones (en una tabla temporal: " -"la presencia de una columna «BLOB» o «TEXT», o la presencia de una columna " -"mayor a 512 bytes) como se menciona al comienzo del artículo de " -"Pythian Group" +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " +"algunas tablas temporales son siempre escritas a disco independientemente " +"del valor de estas variables. Para eliminarlas deberá re-escribir las " +"consultas para evitar estas condiciones (en una tabla temporal: la presencia " +"de una columna «BLOB» o «TEXT», o la presencia de una columna mayor a 512 " +"bytes) como se menciona al comienzo del artículo de Pythian Group" #: libraries/advisory_rules.txt:274 #, php-format @@ -13665,8 +13656,8 @@ msgid "" "mentioned in the MySQL Documentation" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " -"embargo, algunas tablas temporales son siempre a disco permanentemente " +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " +"algunas tablas temporales son siempre a disco permanentemente " "independientemente del valor de estas variables. Para eliminarlas deberá re-" "escribir las consultas para evitar estas condiciones (en una tabla temporal: " "la presencia de una columna «BLOB» o «TEXT» o la presencia de una columna " @@ -13697,8 +13688,8 @@ msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." msgstr "" -"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M " -"es un buen comienzo." +"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M es " +"un buen comienzo." #: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" @@ -13873,8 +13864,7 @@ msgstr "" #: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a " -"0." +"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a 0." #: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" @@ -14035,8 +14025,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% de todos los clientes son abandonados. Este valor debería ser menor a " -"2%%" +"%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2%" +"%" #: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" @@ -14218,6 +14208,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeceras cada %s filas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/et.po b/po/et.po index 581162d8a3..3d5062a42d 100644 --- a/po/et.po +++ b/po/et.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-12 10:03+0200\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian " -"\n" -"Language: et\n" +"Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: et\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Otsi:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "Otsi:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Mine" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Võtme nimi" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Kirjeldus" @@ -108,7 +108,7 @@ msgstr "" "%s fail pole selles süsteemis saadaval. Lisateavet leiad aadressilt www." "phpmyadmin.net ." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s andmebaas on loodud." @@ -136,7 +136,7 @@ msgstr "Tabeli kommentaarid:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Veerg" @@ -159,7 +159,7 @@ msgstr "Veerg" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tüüp" @@ -176,7 +176,7 @@ msgstr "Tüüp" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Tühi" @@ -191,7 +191,7 @@ msgstr "Tühi" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Vaikimisi" @@ -233,9 +233,9 @@ msgstr "Kommentaarid" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ei" @@ -260,9 +260,9 @@ msgstr "Ei" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Jah" @@ -314,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -390,7 +390,7 @@ msgstr "Jälgitud tabelid" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Andmebaas" @@ -398,17 +398,17 @@ msgstr "Andmebaas" msgid "Last version" msgstr "Viimane versioon" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Loodud" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Uuendatud" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Staatus" @@ -421,7 +421,7 @@ msgstr "Staatus" msgid "Action" msgstr "Tegevus" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Näita" @@ -437,11 +437,11 @@ msgstr "Kustuta selle tabeli jälgimise andmed" msgid "Drop" msgstr "Kustuta" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiivne" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ei ole aktiivne" @@ -449,11 +449,11 @@ msgstr "ei ole aktiivne" msgid "Versions" msgstr "Versioonid" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Jälgimise raport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Struktuuri hetkepilt" @@ -601,11 +601,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe " -"%sdokumentatsioonist%s, kuidas sellest piirangust vabaneda." +"Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe %" +"sdokumentatsioonist%s, kuidas sellest piirangust vabaneda." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -637,8 +637,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "Importimisest andmeid vastu ei võetud. Faili nime kas ei saadetud või faili " -"maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata " -"[doc@faq1-16]KKK 1.16[/doc]." +"maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata [doc@faq1-" +"16]KKK 1.16[/doc]." #: import.php:447 msgid "" @@ -650,7 +650,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "%s järjehoidja on loodud" @@ -677,7 +677,7 @@ msgstr "" "phpMyAdmin ei suuda importimist lõpetada, kuni sa ei suurenda php aja " "piiranguid." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -863,8 +863,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmini seadistuse salvestus ei ole lõplikult seadistatud, mõned " -"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad " -"%ssiia%s." +"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad %" +"ssiia%s." #: index.php:521 #, php-format @@ -881,10 +881,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe " -"%sdokumentatsioonist%s." +"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe %" +"sdokumentatsioonist%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud on keelatud." @@ -893,7 +893,7 @@ msgstr "\"DROP DATABASE\" käsud on keelatud." msgid "Do you really want to execute \"%s\"?" msgstr "Kas tõesti tahad käivitada \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Oled KUSTUTAMAS kogu andmebaasi!" @@ -977,8 +977,8 @@ msgstr "Õiguste uuesti laadimine" msgid "Removing Selected Users" msgstr "Valitud kasutajate kustutamine" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Sulge" @@ -1105,13 +1105,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1150,7 +1150,7 @@ msgid "Traffic" msgstr "Liiklus" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Sätted" @@ -1170,13 +1170,14 @@ msgstr "Lisa diagramm ruudustikku" msgid "Please add at least one variable to the series" msgstr "Palun lisa seeriasse vähemalt üks muutuja" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Puudub" @@ -1276,7 +1277,7 @@ msgstr "Muuda sätteid" msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagrammi pealkiri" @@ -1362,7 +1363,7 @@ msgstr "Selgita väljundit" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Aeg" @@ -1458,7 +1459,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impordi" @@ -1515,7 +1516,7 @@ msgid "Cancel" msgstr "Katkesta" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laadimine" @@ -1663,7 +1664,7 @@ msgstr "Peida päringu kast" msgid "Show query box" msgstr "Näita päringu kasti" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1676,7 +1677,7 @@ msgstr "Muuda" msgid "No rows selected" msgstr "Ridu pole valitud" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1759,7 +1760,7 @@ msgstr "Andmepunkti sisu" msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopeeri" @@ -1775,7 +1776,7 @@ msgstr "Rea sõne" msgid "Polygon" msgstr "Hulktahukas" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geomeetria" @@ -2254,33 +2255,33 @@ msgstr "tunnis" msgid "per day" msgstr "päevas" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Olemasolev seadistusfail (%s) ei ole loetav." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Seadistusfailil on valed õigused. See ei tohiks olla kõikide jaoks " "kirjutatav!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Fondi kõrgus" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Kasvav" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2421,14 +2422,14 @@ msgstr "Vaata" msgid "Delete the matches for the %s table?" msgstr "Kustutada %s tabeli vasted?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Kustuta" @@ -2515,16 +2516,11 @@ msgstr "horisontaalne (pööratud päised)" msgid "vertical" msgstr "vertikaalselt" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Päised iga %s rea tagant" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sorteeri võtme alusel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2551,90 +2547,90 @@ msgstr "Sorteeri võtme alusel" msgid "Options" msgstr "Valikud" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Osalised tekstid" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Täistekstid" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Seose võti" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Seose näitamise veerg" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Näita binaarsisu" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Näita BLOB sisu" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Näita binaarset sisu HEX-ina" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Peida veebilehitseja transformatsioon" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Harilik tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Harilik binaar" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Rida on kustutatud" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Sulge" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "päringus" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Näitan ridu" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "kokku" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "päring kestis %01.4f sekundit" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2643,8 +2639,8 @@ msgstr "päring kestis %01.4f sekundit" msgid "With selected:" msgstr "Valitutega:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2655,45 +2651,45 @@ msgstr "Valitutega:" msgid "Check All" msgstr "Vali kõik" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspordi" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Loo vaade" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Prindi vaade" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Prindi vaade (täispikkade tekstidega)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Näita diagrammi" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualiseeri GIS andmed" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Linki ei leitud" @@ -2770,38 +2766,38 @@ msgstr "Indeksit pole määratud!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksid" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Ainulaadne" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakitud" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Hulk" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Kodeering" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentaar" @@ -2843,7 +2839,7 @@ msgstr "Vaade" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktuur" @@ -2988,15 +2984,15 @@ msgstr[1] "Lisati %1$d rida." msgid "Error while creating PDF:" msgstr "PDF loomisel esines viga:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Ei saa hiljutist tabelit salvestada" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Hiljutised tabelid" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Hiljutisi tabeleid pole" @@ -3235,7 +3231,7 @@ msgid "Maximum rows to plot" msgstr "Suurim ridade hulk diagrammis" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" @@ -3346,20 +3342,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Väike ujukoma arv, lubatud väärtused on vahemikus -3.402823466E+38 kuni " -"-1.175494351E-38, 0, ja 1.175494351E-38 kuni 3.402823466E+38" +"Väike ujukoma arv, lubatud väärtused on vahemikus -3.402823466E+38 kuni -" +"1.175494351E-38, 0, ja 1.175494351E-38 kuni 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Topelttäpsusega ujukomaarv, lubatud väärtused on vahemikus " -"-1.7976931348623157E+308 luni -2.2250738585072014E-308, 0, ja " +"Topelttäpsusega ujukomaarv, lubatud väärtused on vahemikus -" +"1.7976931348623157E+308 luni -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 kuni 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3404,9 +3400,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 " -"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest " -"(\"1970-01-01 00:00:00\" UTC)" +"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 03:14:07" +"\" UTC, säilitatakse sekundite hulgana alates ajastu algusest (\"1970-01-01 " +"00:00:00\" UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:729 #, php-format @@ -3634,7 +3630,7 @@ msgstr "Loetelu, mis on valitud määratletud väärtuste nimekirjast" msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL päring:" @@ -3693,7 +3689,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Kiirmuutmine" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profileerimine" @@ -4161,8 +4157,8 @@ msgstr "CHAR veergude muutmine" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Kasuta SQL päringute ([a@http://codemirror.net/]CodeMirror[/a]) muutmiseks " "kasutajasõbralikku redigeerijat, millel on süntaksi esiletõstmise ja ridade " @@ -4557,8 +4553,8 @@ 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 "" -"Vali sorteerimise järjekord võõrvõtme rippmenüü kasti üksustele. " -"[kbd]content[/kbd] on viidatud andmed, [kbd]id[/kbd] on võtme väärtus" +"Vali sorteerimise järjekord võõrvõtme rippmenüü kasti üksustele. [kbd]content" +"[/kbd] on viidatud andmed, [kbd]id[/kbd] on võtme väärtus" #: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" @@ -4698,13 +4694,12 @@ msgstr "Lehe pealkirjad" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Täpsusta veebilehitseja pealkirja. Vaata " -"[doc@cfg_TitleTable]dokumentatsioonist[/doc], kuidas kasutada maagilisi " -"sõne, mida saab kasutada eriliste väärtuste saamiseks." +"Täpsusta veebilehitseja pealkirja. Vaata [doc@cfg_TitleTable]" +"dokumentatsioonist[/doc], kuidas kasutada maagilisi sõne, mida saab kasutada " +"eriliste väärtuste saamiseks." #: libraries/config/messages.inc.php:192 #: libraries/navigation/NavigationHeader.class.php:204 @@ -4825,9 +4820,9 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Kui soovid kasutada SQL valideerija teenust, siis peaksid teadma, et " -"[strong]kõiki SQL käskusid salvestatakse anonüümselt statistika eesmärgil[/" -"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " +"Kui soovid kasutada SQL valideerija teenust, siis peaksid teadma, et [strong]" +"kõiki SQL käskusid salvestatakse anonüümselt statistika eesmärgil[/strong]." +"[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Autoriõigus 2002 Upright Database Technology. Kõik õigused on kaitstud.[/em]" #: libraries/config/messages.inc.php:220 @@ -5491,8 +5486,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]järjehoidja[/a] tugi, soovitatav: [kbd]pma__bookmark[/kbd]" +"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"järjehoidja[/a] tugi, soovitatav: [kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5500,11 +5495,11 @@ msgstr "Järjehoidja tabel" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: " -"[kbd]pma__column_info[/kbd]" +"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5573,8 +5568,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Jäta tühjaks, kui puudub kujundaja tugi, soovitatav: " -"[kbd]pma__designer_coords[/kbd]" +"Jäta tühjaks, kui puudub kujundaja tugi, soovitatav: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5585,9 +5580,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/" -"a]" +"Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5615,8 +5609,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: " -"[kbd]pma__history[/kbd]" +"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5695,8 +5689,8 @@ msgid "" msgstr "" "Andmebaas, mida kasutada seoste, järjehoidjate ja PDF võimaluste " "säilitamiseks. Lisateavet leiad aadressilt [a@http://wiki.phpmyadmin.net/pma/" -"pmadb]pmadb[/a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: " -"[kbd]phpmyadmin[/kbd]" +"pmadb]pmadb[/a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5726,8 +5720,8 @@ msgstr "Hiljuti kasutatud tabel" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/relation]seoste " "linkide[/a] tugi, soovitatav: [kbd]pma__relation[/kbd]" @@ -5746,11 +5740,11 @@ msgstr "SHOW DATABASES käsk" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/" -"auth_types#signon]autentimise tüüpe[/a]" +"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"autentimise tüüpe[/a]" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5783,8 +5777,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: " -"[kbd]pma__table_coords[/kbd]" +"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: [kbd]pma__table_coords" +"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5860,11 +5854,11 @@ msgstr "Käsud, mida jälgida" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: " -"[kbd]pma__tracking[/kbd]" +"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5884,11 +5878,11 @@ msgstr "Loo versioonid automaatselt" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: " -"[kbd]pma__userconfig[/kbd]" +"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: [kbd]" +"pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -6084,11 +6078,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on " -"[kbd]anonymous[/kbd])" +"Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on [kbd]" +"anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Kasutajanimi" @@ -6493,7 +6487,7 @@ msgstr "Andmebaas(id):" msgid "Table(s):" msgstr "Tabel(id):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Read:" @@ -6542,8 +6536,8 @@ msgstr ", @TABLE@ saab tabeli nimeks" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud %1$sstrftime%2$s'ga ja seetõttu saad kasutada " "aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud " @@ -7087,8 +7081,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "PBXT kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt" "%s." @@ -7106,7 +7100,7 @@ msgid "No data found for GIS visualization." msgstr "GIS visualiseerimiseks andmeid ei leitud." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." @@ -7224,11 +7218,11 @@ msgstr "" "Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale " "liikumiseks kasuta CTRL + nooled" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -7273,7 +7267,7 @@ msgstr "Lisa tabeli eesliide:" msgid "Add prefix" msgstr "Lisa eesliide" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Kas tõesti tahad käivitada selle päringu?" @@ -7600,17 +7594,17 @@ msgid "Drop the database (DROP)" msgstr "Kustuta andmebaas (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Ainult struktuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktuur ja andmed" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Ainult andmed" @@ -7771,11 +7765,11 @@ msgstr "Tere tulemast %s'i" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada " -"%1$spaigaldaja skripti%2$s." +"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada %1" +"$spaigaldaja skripti%2$s." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8021,13 +8015,13 @@ msgstr "Aseta veergude nimed esimesse ritta:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Host:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Loomise aeg:" @@ -8041,7 +8035,7 @@ msgstr "PHP versioon:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Andmebaas:" @@ -8314,7 +8308,6 @@ msgstr "" "see viga ja proovi uuesti." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "OpenDocument tabeli parsimine ebaõnnestus!" @@ -9155,7 +9148,7 @@ msgstr "Atribuudid" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Lisaks" @@ -9318,7 +9311,7 @@ msgid "Library" msgstr "Teek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versioon" @@ -9773,8 +9766,8 @@ msgstr "Kasutajate ülevaade" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate õigused otse MySQL'i õiguste tabelist. " "Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " @@ -9788,46 +9781,261 @@ msgstr "Valitud kasutajat õiguste tabelist ei leitud." msgid "You have added a new user." msgstr "Lisasid uue kasutaja." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekund" +msgstr[1] "%d sekundit" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minutit" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logi statistika" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Valitud ajavahemik:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Vali logi, millest statistikat luua." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Tulemused on grupeeritud päringu teksti alusel." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Päringu analüüsija" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Jälgija juhendid" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmini jälgija saab anda sulle soovitusi serveri seadistuse " +"optimeerimise kohta ning jälgida ajakulukaid päringuid. Hiljem võib sul vaja " +"minna muuta log_output väärtuseks 'TABLE' ning lubada kas slow_query_log või " +"general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " +"suurendab serveri koormust kuni 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Kahjuks sinu andmebaasi server ei võimalda logida tabelisse, mis on vajalik " +"andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab " +"MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Kasuta jälgijat:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Sinu veebilehitseja värskendab kõiki näidatavaid diagramme iga teatud aja " +"tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või " +"eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Kui soovid näha päringuid logist, siis vali sobiv ajavahemik ükskõik " +"millisel diagrammil ning hoia all vasakut hiire nuppu ja loo panoraam üle " +"diagrammi. Kui see on kinnitatud, siis see loob rühmitatud päringute tabeli, " +"kust võid valida edasiseks analüüsimiseks sobivad SELECT käsud." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Palun pane tähele:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log lubamine võib serveri laadimist suurendada 5-15%. Samuti võta " +"teatavaks, et logidest statistika loomine nõuab intensiivset tööd, seetõttu " +"on soovitatav valida ainult üks lühike ajavahemik ja keela general_log ja " +"tühjenda selle tabel, kui jälgimist pole enam tarvis." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Lisa diagramm" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Ettemääratud diagramm" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Staatuse muutuja(d)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vali seeria:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Tavaliselt jälgitav" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "või tipi muutuja nimi:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Näita eristatava väärtusena" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Kasuta jagajat" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Lisa andmete väärtustele ühikud" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Lisa see seeria" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Puhasta seeria" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Seeriad diagrammis:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Alusta jälgimist" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Juhendid/Paigaldus" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Diagrammide korrastamine on lõpetatud" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Luba diagrammide korrastamine" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Uuendamise sagedus" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagrammi veerud" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagrammi korrastus" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " +"Kui paigaldamine on keeruline, võid seda eksportida." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Lähtesta vaikimisi väärtustele" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL tulemus" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Koostanud:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Detailne profiil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Järjestus" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Olek" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Olekupõhine kokkuvõte" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Aeg kokku" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% aeg" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Kutsed" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø aeg" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Lisa see SQL päring järjehoidjasse" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Nimi:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9846,10 +10054,6 @@ msgstr "Puhasta" msgid "Bookmark this SQL query:" msgstr "Lisa see SQL päring järjehoidjasse:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Asenda samanimelise järjehoidjaga" @@ -9988,7 +10192,7 @@ msgstr "Kontrolli ballastiga tabeleid" msgid "Sort" msgstr "Sorteeri" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Puudub" @@ -10142,7 +10346,7 @@ msgstr "Efektiivne" msgid "Table %1$s has been altered successfully" msgstr "%1$s tabel on edukalt muudetud" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Päringu viga" @@ -10293,7 +10497,7 @@ msgstr "Viga ZIP arhiivis:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fataalne viga: navigeerimiseks on vajalik AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Muutused on salvestatud" @@ -10349,7 +10553,7 @@ msgstr "Lülitu väiksele/suurele" msgid "Toggle relation lines" msgstr "Muuda seose ridu" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Impordi/Ekspordi koordinaadid PDF skeemile" @@ -10407,39 +10611,39 @@ msgstr "Agregaat" msgid "Active options" msgstr "Aktiivsed valikud" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Leht on loodud" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Lehe loomine ebaõnnestus" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Leht:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Impordi valitud lehelt" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Ekspordi valitud lehele" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Loo leht ja ekspordi sellele" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Uue lehe nimi: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Ekspordi/Impordi skaalas:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "soovituslik" @@ -10467,7 +10671,7 @@ msgstr "Sisemine seos on loodud" msgid "Relation deleted" msgstr "Seos on kustutatud" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Kujundaja jaoks koordinaatide salvestamisel esines viga." @@ -10903,208 +11107,6 @@ msgstr "" "jälgida või vaadata oma andmebaasi ja võtta muudatus tagasi, kui ei " "saavutatud mingit praktiliselt mõõdetavat arengut." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Jälgija juhendid" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmini jälgija saab anda sulle soovitusi serveri seadistuse " -"optimeerimise kohta ning jälgida ajakulukaid päringuid. Hiljem võib sul vaja " -"minna muuta log_output väärtuseks 'TABLE' ning lubada kas slow_query_log või " -"general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " -"suurendab serveri koormust kuni 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Kahjuks sinu andmebaasi server ei võimalda logida tabelisse, mis on vajalik " -"andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab " -"MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Kasuta jälgijat:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Sinu veebilehitseja värskendab kõiki näidatavaid diagramme iga teatud aja " -"tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või " -"eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Kui soovid näha päringuid logist, siis vali sobiv ajavahemik ükskõik " -"millisel diagrammil ning hoia all vasakut hiire nuppu ja loo panoraam üle " -"diagrammi. Kui see on kinnitatud, siis see loob rühmitatud päringute tabeli, " -"kust võid valida edasiseks analüüsimiseks sobivad SELECT käsud." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Palun pane tähele:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log lubamine võib serveri laadimist suurendada 5-15%. Samuti võta " -"teatavaks, et logidest statistika loomine nõuab intensiivset tööd, seetõttu " -"on soovitatav valida ainult üks lühike ajavahemik ja keela general_log ja " -"tühjenda selle tabel, kui jälgimist pole enam tarvis." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Lisa diagramm" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Ettemääratud diagramm" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Staatuse muutuja(d)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vali seeria:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Tavaliselt jälgitav" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "või tipi muutuja nimi:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Näita eristatava väärtusena" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Kasuta jagajat" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Lisa andmete väärtustele ühikud" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Lisa see seeria" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Puhasta seeria" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Seeriad diagrammis:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logi statistika" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Valitud ajavahemik:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Vali logi, millest statistikat luua." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Tulemused on grupeeritud päringu teksti alusel." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Päringu analüüsija" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekund" -msgstr[1] "%d sekundit" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minutit" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Alusta jälgimist" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Juhendid/Paigaldus" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Diagrammide korrastamine on lõpetatud" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Luba diagrammide korrastamine" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Uuendamise sagedus" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagrammi veerud" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagrammi korrastus" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " -"Kui paigaldamine on keeruline, võid seda eksportida." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Lähtesta vaikimisi väärtustele" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11873,10 +11875,9 @@ msgid "" "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -"Palun loo phpMyAdmini juurkataloogi veebiserveri jaoks kirjutatav " -"[em]config[/em] kaust, nagu on kirjeldatud " -"[doc@setup_script]dokumentatsioonis[/doc]. Muul juhul saad seda ainult alla " -"laadida või vaadata." +"Palun loo phpMyAdmini juurkataloogi veebiserveri jaoks kirjutatav [em]config" +"[/em] kaust, nagu on kirjeldatud [doc@setup_script]dokumentatsioonis[/doc]. " +"Muul juhul saad seda ainult alla laadida või vaadata." #: setup/frames/index.inc.php:60 msgid "" @@ -11892,8 +11893,8 @@ msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." msgstr "" -"Kui sinu server on seadistatud nõustuma ka HTTPS taotlustega, siis ava [a@" -"%s]see link[/a], et teada saada, kuidas kasutada turvalist ühendust." +"Kui sinu server on seadistatud nõustuma ka HTTPS taotlustega, siis ava [a@%s]" +"see link[/a], et teada saada, kuidas kasutada turvalist ühendust." #: setup/frames/index.inc.php:68 msgid "Insecure connection" @@ -12095,8 +12096,8 @@ msgid "" "(currently %d)." msgstr "" "Kui %ssisselogimise küpsise kehtivus%s on suurem, kui 1440 sekundit, siis " -"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime" -"%s väärtus on sellest madalam (praegu %d)." +"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime%" +"s väärtus on sellest madalam (praegu %d)." #: setup/lib/index.lib.php:310 #, php-format @@ -12125,8 +12126,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - " -"%shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " +"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - %" +"shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " "Siiski ei pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub " "ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid." @@ -12136,8 +12137,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Sa valisid [kbd]config[/kbd] autentimise tüübi ja kaasasid automaatsele " "sisselogimisele kasutajanime ja parooli, mis ei ole soovitatav valik " @@ -12184,24 +12185,24 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid." msgid "Wrong data" msgstr "Valed andmed" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Järjehoidjat ei loodud" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Valideeritud SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12211,19 +12212,11 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud võimalused " "ei ole saadaval." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid `%s` tabeli indeksitega" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Lisa see SQL päring järjehoidjasse" - -#: sql.php:1191 -msgid "Label:" -msgstr "Nimi:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Puuduvad kuvatavad andmed" @@ -12428,31 +12421,31 @@ msgstr "Vali veerg, mida näidata:" msgid "No column selected." msgstr "Veergu ei ole valitud." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tabeli jälgimise raport" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioon %1$s on loodud, %2$s jälgimine on aktiveeritud." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s jälgimine deaktiveeriti versioonil %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s jälgimine aktiveeriti versioonil %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL käsud on käivitatud." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12460,114 +12453,114 @@ msgstr "" "Ajutise andmebaasi loomisega ja kasutamisega saad käivitada tõmmise. Palun " "veendu, et sul on selle jaoks õigusi." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kustuta need kaks rida, kui sa ei vaja neid." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL käsud on eksporditud. Palun kopeeri tõmmis või käivita see." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versiooni %s hetkepilt (SQL kood)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Jälgimise andmete definitsioon on edukalt kustutatud" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Jälgimise andmete töötlus on edukalt kustutatud" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Jälgimise käsud" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Näita %1$s koos kuupäevadega alates %2$s kuni %3$s kasutajaks %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Kustuta raportist jälgimise andmete rida" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Andmed puuduvad" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Kuupäev" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Andmete definitsiooni käsk" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Andmete töötluse käsk" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL tõmmis (faili allalaadimine)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL tõmmis" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "See valik asendab sinu tabeli ja selles sisalduvad andmed." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL teostus" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Ekspordi kui %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Näita versioone" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiveeri %s jälgimine" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktiveeri kohe" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktiveeri %s jälgimine" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiveeri kohe" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Loo versioon %1$s, %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Jälgi nende andmete definitsiooni käske:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Jälgi nende andmete töötluse käske:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Loo versioon" @@ -12961,11 +12954,11 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" -"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s" -"%%. See peaks olema üle 80%%" +"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s%" +"%. See peaks olema üle 80%%" #: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" @@ -13115,8 +13108,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% kõikidest sorteerimistest põhjustab ajutisi tabeleid. See väärtus peaks " "jääma alla 10%%." @@ -13693,8 +13686,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla " -"2%%" +"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla 2%" +"%" #: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" @@ -13871,6 +13864,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Päised iga %s rea tagant" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14165,9 +14161,9 @@ msgstr "concurrent_insert väärtuseks on määratud 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Kui valida selleks [kbd]nested[/kbd], siis tabeli nime aliast kasutatakse " #~ "sõltuvalt $cfg['LeftFrameTableSeparator'] direktiivist ainult tabelite " @@ -14859,9 +14855,9 @@ msgstr "concurrent_insert väärtuseks on määratud 0" #~ "Enclose table and field names with backquotes (Protects field and " #~ "table names formed with special characters or keywords)" #~ msgstr "" -#~ "Aseta tabeli ja väljade nimed alumise ja ülemise jutumärgi vahele " -#~ "(Kaitseb välja ja tabeli nimesid eriliste sümbolitega või " -#~ "võtmesõnadega vormimise eest)" +#~ "Aseta tabeli ja väljade nimed alumise ja ülemise jutumärgi vahele " +#~ "(Kaitseb välja ja tabeli nimesid eriliste sümbolitega või võtmesõnadega " +#~ "vormimise eest)" #~ msgid "Create a new index" #~ msgstr "Loo uus indeks" diff --git a/po/eu.po b/po/eu.po index f329ecf884..4ddcd39adb 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-04-25 15:47+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque \n" -"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Bilatu" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Bilatu" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Joan" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Giltza-izena" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Deskribapena" @@ -109,7 +109,7 @@ msgstr "" "%s fitxategia ez dago eskuragarri sisteman, informazio gehiagorako ikusi www." "phpmyadmin.net" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s datu-basea sortua izan da." @@ -139,7 +139,7 @@ msgstr "Taularen iruzkinak" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Zutabea" @@ -162,7 +162,7 @@ msgstr "Zutabea" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Mota" @@ -179,7 +179,7 @@ msgstr "Mota" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulua" @@ -194,7 +194,7 @@ msgstr "Nulua" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Lehenetsia" @@ -236,9 +236,9 @@ msgstr "Iruzkinak" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ez" @@ -263,9 +263,9 @@ msgstr "Ez" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Bai" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Taula" @@ -401,7 +401,7 @@ msgstr "Taulak jarraipenarekin" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Datu-basea" @@ -409,17 +409,17 @@ msgstr "Datu-basea" msgid "Last version" msgstr "Azken bertsioa" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Sortua" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Eguneratua" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Egoera" @@ -432,7 +432,7 @@ msgstr "Egoera" msgid "Action" msgstr "Ekintza" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Erakutsi" @@ -448,11 +448,11 @@ msgstr "Ezabatu taula honetako jarraipen datuak" msgid "Drop" msgstr "Ezabatu" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktibo" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ez aktibo" @@ -460,11 +460,11 @@ msgstr "ez aktibo" msgid "Versions" msgstr "Bertsioak" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Jarraipen informea" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Egitura kaptura" @@ -620,14 +620,14 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu " -"%sdocumentation%s tamaina mugak aldatzeko." +"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu %" +"sdocumentation%s tamaina mugak aldatzeko." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -666,7 +666,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "%s laster-marka sortu da" @@ -688,7 +688,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -900,7 +900,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." @@ -909,7 +909,7 @@ msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." msgid "Do you really want to execute \"%s\"?" msgstr "Benetan nahi al duzu \"%s\" exekutatzea?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Datu-base osoa SUNTSITZERA zoaz!" @@ -1000,8 +1000,8 @@ msgstr "Pribilegioak berkargatzen" msgid "Removing Selected Users" msgstr "Hautatutako erabiltzaileak baztertu" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Itxi" @@ -1134,13 +1134,13 @@ msgstr "Byte" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1182,7 +1182,7 @@ msgid "Traffic" msgstr "Trafikoa" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1205,13 +1205,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Batez" @@ -1311,7 +1312,7 @@ msgstr "Erlazioen ezaaugarri orokorrak" msgid "Current settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1401,7 +1402,7 @@ msgstr "SQL-a azaldu" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Denbora" @@ -1511,7 +1512,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1577,7 +1578,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Lokal" @@ -1755,7 +1756,7 @@ msgstr "SQL kontsulta" msgid "Show query box" msgstr "SQL kontsulta" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1768,7 +1769,7 @@ msgstr "Editatu" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1860,7 +1861,7 @@ msgstr "Edukinen taula" msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1876,7 +1877,7 @@ msgstr "Lerro kateak" msgid "Polygon" msgstr "Poligono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2422,31 +2423,31 @@ msgstr "orduko" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Goranzko" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2600,14 +2601,14 @@ msgstr "Arakatu" msgid "Delete the matches for the %s table?" msgstr "%s taulako aukeratuak ezabatu?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Ezabatu" @@ -2710,17 +2711,11 @@ msgstr "horizontal (goiburukoak biratuta)" msgid "vertical" msgstr "bertikal" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Exekutatu aurretik aukeratutako kontsulta" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2748,100 +2743,100 @@ msgstr "Gakoaren arabera ordenatu" msgid "Options" msgstr "Eragiketak" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testu partzialak" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testu osoak" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Erlazio-eskema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Erlazio-eskema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Hil" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "kontsultan" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" -"%s erreferentzia egin." +"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation%" +"s erreferentzia egin." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "guztira" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2850,8 +2845,8 @@ msgstr "Kontsulta exekutatzeko denbora %01.4f seg" msgid "With selected:" msgstr "Ikurdunak:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2862,48 +2857,48 @@ msgstr "Ikurdunak:" msgid "Check All" msgstr "Guztiak egiaztatu" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esportatu" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -2980,38 +2975,38 @@ msgstr "Ez dago indizerik definituta!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indizeak" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitatea" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Ordenamendua" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Iruzkinak" @@ -3052,7 +3047,7 @@ msgstr "Ikusipegia" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Egitura" @@ -3202,16 +3197,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "Datuak irakurtzea baimentzen du." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Taularik ez" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3461,7 +3456,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3563,14 +3558,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3814,7 +3809,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3875,7 +3870,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4359,8 +4354,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4930,9 +4925,8 @@ msgstr "Orri zenbakia:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5701,8 +5695,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5907,8 +5901,8 @@ msgstr "Taula aztertu" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5926,8 +5920,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6029,8 +6023,8 @@ msgstr "Sententziak" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6050,8 +6044,8 @@ msgstr "Zerbitzariaren bertsioa" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6246,8 +6240,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" @@ -6663,7 +6657,7 @@ msgstr "Datu-baseak" msgid "Table(s):" msgstr "Taulak" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6719,8 +6713,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7235,8 +7229,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7254,7 +7248,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." @@ -7376,11 +7370,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7435,7 +7429,7 @@ msgstr "Taularen aurrizkia aldatu" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7778,17 +7772,17 @@ msgid "Drop the database (DROP)" msgstr "Datu-basea ezabatu (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Egitura soilik" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Egitura eta datuak" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Datuak soilik" @@ -7961,8 +7955,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8241,7 +8235,7 @@ msgstr "Eremuen izenak lehenengo errenkadan jarri" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8249,7 +8243,7 @@ msgstr "Zerbitzaria" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8267,7 +8261,7 @@ msgstr "PHP Bertsioa" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9434,7 +9428,7 @@ msgstr "Atributuak" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9610,7 +9604,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "PHP Bertsioa" @@ -10091,8 +10085,8 @@ msgstr "Erabiltzailearen info orokorra" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " @@ -10108,60 +10102,274 @@ msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "segunduko" +msgstr[1] "segunduko" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "lanean" +msgstr[1] "lanean" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Errenkadaren estatistikak" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Taulak hautatu" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Kontsulta mota" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "Gehitu %s zutabe" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Taula berrizendatu izen honetara: " + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Taulak hautatu" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Erabiltzaile berria gehitu" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL kontsulta" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Lar" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Egilea:" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Gehitu/ezabatu irizpide-zutabea" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL emaitza" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Egilea:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Datuak soilik" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Beste" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Egoera" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Gutira" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Denbora" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Itxi" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Denbora" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Kontsulta hau gogokoetan gorde" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiketa" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10182,10 +10390,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10326,7 +10530,7 @@ msgstr "Arazteko hondakinak egiaztatu" msgid "Sort" msgstr "Ordenatu" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10496,7 +10700,7 @@ msgstr "Eraginkorra" msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10665,7 +10869,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" @@ -10723,7 +10927,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Txinera tradizionala" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10798,48 +11002,48 @@ msgstr "Sortu" msgid "Active options" msgstr "Taularen hobespenak" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "%s taula ezabatu egin da" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Erabilpena" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fitxategiak inportatu" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Indize berri bat sortu" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Erabiltzaile-izena" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10869,7 +11073,7 @@ msgstr "Barne-erlazioak" msgid "Relation deleted" msgstr "Erlazioen ikuspegia" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11293,205 +11497,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "Gehitu %s zutabe" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Taula berrizendatu izen honetara: " - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Taulak hautatu" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Erabiltzaile berria gehitu" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL kontsulta" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Errenkadaren estatistikak" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Taulak hautatu" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Kontsulta mota" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "segunduko" -msgstr[1] "segunduko" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "lanean" -msgstr[1] "lanean" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Lar" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Egilea:" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Gehitu/ezabatu irizpide-zutabea" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12388,8 +12393,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12432,49 +12437,39 @@ msgstr "" msgid "Wrong data" msgstr "Datu-baserik ez" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "%s laster-marka sortu da" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Kontsulta hau gogokoetan gorde" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiketa" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12715,151 +12710,151 @@ msgstr "Aukeratu erakutsi beharreko eremua" msgid "No column selected." msgstr "Ez dago datu-baserik aukeratuta." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Datu-baserik ez" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Datuak" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Ezabatu taula honetako jarraipen datuak" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Zerbitzariaren bertsioa" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Zerbitzariaren bertsioa" @@ -13232,8 +13227,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13361,8 +13356,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14022,6 +14017,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Exekutatu aurretik aukeratutako kontsulta" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/fa.po b/po/fa.po index 691dff95a6..476b691595 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 15:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian \n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "جستجو" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "جستجو" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "تاييد" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "نام کلیدی" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "توضیحات" @@ -109,7 +109,7 @@ msgstr "" "فایل %s بر روی این سیستم موجود نمی باشد، جهت کسب اطلاعات بیشتر به وب سایت " "www.phpmyadmin.net مراجعه نمایید." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "پایگاه داده %1$s ایجاد شد." @@ -139,7 +139,7 @@ msgstr "توضيحات جدول" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "ستون" @@ -162,7 +162,7 @@ msgstr "ستون" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "نوع" @@ -179,7 +179,7 @@ msgstr "نوع" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "خالي" @@ -194,7 +194,7 @@ msgstr "خالي" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "پيش‌فرض" @@ -236,9 +236,9 @@ msgstr "توضيحات" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "خير" @@ -263,9 +263,9 @@ msgstr "خير" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "بلي" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "جدول" @@ -399,7 +399,7 @@ msgstr "جدول های پیگیری شده" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "پايگاه داده" @@ -407,17 +407,17 @@ msgstr "پايگاه داده" msgid "Last version" msgstr "آخرین نسخه" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "ایجاد شده" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "به روز شده" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "وضعیت" @@ -430,7 +430,7 @@ msgstr "وضعیت" msgid "Action" msgstr "عمل" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "نمايش" @@ -446,11 +446,11 @@ msgstr "اطلاعات پیگیری شده برای این جدول را پاک msgid "Drop" msgstr "حذف" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "فعال" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "غیر فعال" @@ -458,11 +458,11 @@ msgstr "غیر فعال" msgid "Versions" msgstr "نسخه ها" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "گزارشات دنبال شده" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "تصویر لحظه ای ساختار" @@ -624,11 +624,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "احتمالاً شما سعی کردید یک فایل حجیم را اپلور کنید.لطفاً برای راهکار در مورد " "این محدودیت به%sنوشتار%s مراجعه کنید." @@ -674,7 +674,7 @@ msgstr "نمی توان کاراکترها را بدون داشتن کتابخا msgid "Could not load import plugins, please check your installation!" msgstr "خطا در بارگزار پلاگین ها, لطفا مراحل نصب را چک کنید" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "بوک مارک %s ایجاد شده" @@ -701,7 +701,7 @@ msgstr "" "تواند ورود داده را تمام کند مگر اینکه شما حداکثر زمان اجرای php را افزایش " "دهید." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -837,8 +837,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " -"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " +"، و شما بايد اين حفره امنيتي را ذرست كنيد." #: index.php:414 msgid "" @@ -906,7 +906,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "عبارت \"DROP DATABASE\" غیر فعال است" @@ -916,7 +916,7 @@ msgstr "عبارت \"DROP DATABASE\" غیر فعال است" msgid "Do you really want to execute \"%s\"?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "شما برای حذف کامل پایگاه داده اقدام کرده اید!" @@ -1003,8 +1003,8 @@ msgstr "ويرايش امتيازات" msgid "Removing Selected Users" msgstr "حذف کاربران انتخاب شده" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "بستن" @@ -1130,13 +1130,13 @@ msgstr "بايت" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "كيلوبايت" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "مگا بايت" @@ -1175,7 +1175,7 @@ msgid "Traffic" msgstr "ترافیک" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "تنظیم" @@ -1195,13 +1195,14 @@ msgstr "اضافه کردن نمودار به جدول" msgid "Please add at least one variable to the series" msgstr "لطفا حداقل یک مقدار به این سری اضافه نمایید" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "هیچ یک" @@ -1299,7 +1300,7 @@ msgstr "تغيير تنظیمات" msgid "Current settings" msgstr "تنظیمات فعلی" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "عنوان نمودار" @@ -1384,7 +1385,7 @@ msgstr "شرح دادن خروجی" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "زمان" @@ -1481,7 +1482,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "صدور" @@ -1538,7 +1539,7 @@ msgid "Cancel" msgstr "لغو کردن" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "در حال بارگیری" @@ -1692,7 +1693,7 @@ msgstr "مخفی کردن جعبه پرس و جو" msgid "Show query box" msgstr "نمایش جعبه پرس و جو" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1705,7 +1706,7 @@ msgstr "ويرايش" msgid "No rows selected" msgstr "هیچ سطری انتخاب نشده است" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1790,7 +1791,7 @@ msgstr "محتوای داده ها" msgid "Ignore" msgstr "در نظر نگرفتن" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "کپی" @@ -1806,7 +1807,7 @@ msgstr "رشته خطی" msgid "Polygon" msgstr "چند گوشه" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "هندسه" @@ -2301,31 +2302,31 @@ msgstr "در ساعت" msgid "per day" msgstr "هر روز" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "فایل تنظیمات فعلی (%s) قابل خواندن نیست." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "تنظمیات دسترسی اشتباه در فایل تنظیمات ، نباید قابل نوشتن جهانی باشد!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "اندازه فونت" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "صعودي" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2477,14 +2478,14 @@ msgstr "فهرست" msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "حذف" @@ -2579,16 +2580,11 @@ msgstr "" msgid "vertical" msgstr "عمودي" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,95 +2612,95 @@ msgstr "" msgid "Options" msgstr "عمليات" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy msgid "Partial texts" msgstr "متغییر" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "كاملا متن" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy msgid "Hide browser transformation" msgstr "اطلاعات ورود" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "سطر حذف گرديد" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "از کار انداختن" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "داخل کوئری" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد . لطفا به %sنوشتار%s " "مراجعه کنید ." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "جمع كل" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2713,8 +2709,8 @@ msgstr "" msgid "With selected:" msgstr "موارد انتخاب‌ شده :" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2725,48 +2721,48 @@ msgstr "موارد انتخاب‌ شده :" msgid "Check All" msgstr "انتخاب همه" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "صدور" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "نماي چاپ" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -2841,38 +2837,38 @@ msgstr "هيچ فهرستي تعريف‌نشده‌است!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "فهرست‌ها" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "يكتا" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "مقایسه" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "توضيحات" @@ -2912,7 +2908,7 @@ msgstr "نمایه" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "ساختار" @@ -3061,15 +3057,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "PDF خطا در موقع درست کردن:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "جدول اخیر ذخیره نشد" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "جدول های اخیر" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "جدول های اخیری وجود ندارد" @@ -3322,7 +3318,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3426,14 +3422,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3676,7 +3672,7 @@ msgstr "" msgid "Max: %s%s" msgstr "حداکثر: %s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3737,7 +3733,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "در خط" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "استفاده از پروفایل" @@ -4204,8 +4200,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4738,9 +4734,8 @@ msgstr "عنوان صفحه" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5489,8 +5484,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5685,8 +5680,8 @@ msgstr "جدول هایی که به تازگی استفاده شده" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5703,8 +5698,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5801,8 +5796,8 @@ msgstr "جملاتی که باید ردگیری شوند" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5821,8 +5816,8 @@ msgstr "به صورت خودکار نسخه ایجاد شود" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6012,8 +6007,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "نام كاربر" @@ -6413,7 +6408,7 @@ msgstr "پايگاههاي داده:" msgid "Table(s):" msgstr "جدولها" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6466,8 +6461,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6976,8 +6971,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6994,7 +6989,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." @@ -7114,11 +7109,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7173,7 +7168,7 @@ msgstr "جایگزینی پیشوند جدول" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7532,17 +7527,17 @@ msgid "Drop the database (DROP)" msgstr "حذف پایگاه داده" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "فقط ساختار" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ساختار و داده‌ها" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "فقط داده‌ها" @@ -7711,8 +7706,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "احتمالا فایل تنظیمات ایجاد نکرده اید.می توانید از %1$ssetup script%2$s برای " "ایجاد آن استفاده نمایید." @@ -7986,7 +7981,7 @@ msgstr "قراردادن نام ستونها در اولين سطر" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -7994,7 +7989,7 @@ msgstr "ميزبان" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8012,7 +8007,7 @@ msgstr "نسخه PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9104,7 +9099,7 @@ msgstr "ويژگيها" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "اضافي" @@ -9275,7 +9270,7 @@ msgid "Library" msgstr "کتابخانه" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "نسخه" @@ -9730,8 +9725,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9742,61 +9737,273 @@ msgstr "" msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] " ثانیه" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "دقیقه" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "آمار سطرها" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Select Tables" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "پرس و جو" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "افزودن ستون جديد" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "حذف پایگاه داده" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Select Tables" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "افزودن يك كاربر جديد" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "پرس و جوي SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "شنبه" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "توليد‌شده توسط" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "اضافه يا حذف ستونها" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "نتيجه SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "توليد‌شده توسط" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "فقط داده‌ها" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "دیگر" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "شنبه" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "زمان کل:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "زمان" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "بستن" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "زمان" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Data Label" +msgid "Label:" +msgstr "پايگاه داده" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -9816,10 +10023,6 @@ msgstr "تقویم" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9945,7 +10148,7 @@ msgstr "جدول هایی که سربار دارند را چک کنید" msgid "Sort" msgstr "ترتيب" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10112,7 +10315,7 @@ msgstr "موثر" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10143,10 +10346,9 @@ msgid "" "example '\\\\xyz' or 'a\\'b')." msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " -"استفاده نماييد : 'a','b','c'…
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"استفاده نماييد : 'a','b','c'…
اگر احتياج داشتيد كه از علامت مميز برعكس" +"(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد ، " +"قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a\\'b')" #: libraries/tbl_columns_definition_form.inc.php:110 msgid "" @@ -10180,10 +10382,9 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " -"استفاده نماييد : 'a','b','c'…
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"استفاده نماييد : 'a','b','c'…
اگر احتياج داشتيد كه از علامت مميز برعكس" +"(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد ، " +"قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a\\'b')" #: libraries/tbl_columns_definition_form.inc.php:412 msgid "ENUM or SET data too long?" @@ -10280,7 +10481,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" @@ -10336,7 +10537,7 @@ msgstr "تعویض کوچک/بزرگ" msgid "Toggle relation lines" msgstr "تعویض خطوط رابط" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "وارد/صدور مختصات برای طرح های PDF" @@ -10398,43 +10599,43 @@ msgstr "مجموع" msgid "Active options" msgstr "گزینه های فعال" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "صفحه مورد نظر ایجاد گردید" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "ایجاد صفحه ممکن نیست" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "صفحه" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "وادر کردن اطلاعات به صفحه انتخاب شده" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "صدور اطلاعات به صفحه انتخاب شده" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "ایجاد صفحه و صدور اطلاعات به آن" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "نام صفحه جدید : " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "صدور / وارد کردن اطلاعات برای مقیاس" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "پیشنهاد شده" @@ -10464,7 +10665,7 @@ msgstr "ارتباط داخلی افزوده شد" msgid "Relation deleted" msgstr "رابطه حذف شد" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "خطای ذخیره مختصات برای طراح." @@ -10881,203 +11082,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "افزودن ستون جديد" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "حذف پایگاه داده" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Select Tables" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "افزودن يك كاربر جديد" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "پرس و جوي SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "آمار سطرها" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Select Tables" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "پرس و جو" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] " ثانیه" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "دقیقه" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "شنبه" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "توليد‌شده توسط" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "اضافه يا حذف ستونها" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11972,8 +11976,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12016,28 +12020,28 @@ msgstr "" msgid "Wrong data" msgstr "No databases" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "بوک مارک %s ایجاد شده" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12049,21 +12053,11 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Data Label" -msgid "Label:" -msgstr "پايگاه داده" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12305,148 +12299,148 @@ msgstr "ستون را براي نمايش انتخاب نماييد" msgid "No column selected." msgstr "هیچ سطری انتخاب نشده است" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "پیگردی فعال می باشد." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "پیگردی فعال می باشد." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "No databases" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "داده" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "نسخه سرور" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "نسخه سرور" @@ -12824,8 +12818,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12953,8 +12947,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/fi.po b/po/fi.po index 4969fcf4d7..6596c749b9 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-12 22:13+0200\n" "Last-Translator: Lassi Ruonavaara \n" "Language-Team: Finnish \n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Etsi" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Etsi" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Suorita" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Avaimen nimi" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Kuvaus" @@ -109,7 +109,7 @@ msgstr "" "Tiedostoa %s ei löydy tästä järjestelmästä, osoitteessa www.phpmyadmin.net " "on lisätietoja." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." @@ -139,7 +139,7 @@ msgstr "Taulun kommentit" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Sarake" @@ -162,7 +162,7 @@ msgstr "Sarake" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tyyppi" @@ -179,7 +179,7 @@ msgstr "Tyyppi" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Tyhjä" @@ -194,7 +194,7 @@ msgstr "Tyhjä" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Oletusarvo" @@ -236,9 +236,9 @@ msgstr "Kommentit" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ei" @@ -263,9 +263,9 @@ msgstr "Ei" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Kyllä" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Taulu" @@ -399,7 +399,7 @@ msgstr "Seurattavat taulut" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Tietokanta" @@ -407,17 +407,17 @@ msgstr "Tietokanta" msgid "Last version" msgstr "Viimeinen versio" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Luotu" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Päivitetty" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Tila" @@ -430,7 +430,7 @@ msgstr "Tila" msgid "Action" msgstr "Toiminnot" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Näytä" @@ -446,11 +446,11 @@ msgstr "Poista tämän taulun seurantatiedot" msgid "Drop" msgstr "Tuhoa" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "käytössä" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ei käytössä" @@ -458,11 +458,11 @@ msgstr "ei käytössä" msgid "Versions" msgstr "Versiot" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Seurantaraportti" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" @@ -620,11 +620,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista" -"%s, kuinka tämän rajoituksen voi poistaa." +"Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista%" +"s, kuinka tämän rajoituksen voi poistaa." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -669,7 +669,7 @@ msgstr "Tiedoston merkistöä ei voida muuttaa ilman merkistökirjastoa" msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" @@ -696,7 +696,7 @@ msgstr "" "tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun " "asti ellei PHP:n suoritusaikarajaa nosteta." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -933,7 +933,7 @@ msgstr "" "Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja " "mahdollisista ongelmista." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." @@ -942,7 +942,7 @@ msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." msgid "Do you really want to execute \"%s\"?" msgstr "Haluatko varmasti suorittaa \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -1029,8 +1029,8 @@ msgstr "Käyttöoikeusten uudelleenlataus" msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Sulje" @@ -1157,13 +1157,13 @@ msgstr "tavua" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "kt" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "Mt" @@ -1202,7 +1202,7 @@ msgid "Traffic" msgstr "Liikenne" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Asetukset" @@ -1222,13 +1222,14 @@ msgstr "Lisää taulukko ruudukkoon" msgid "Please add at least one variable to the series" msgstr "Lisää sarjaan vähintään yksi muuttuja" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ei mitään" @@ -1328,7 +1329,7 @@ msgstr "Muuta asetuksia" msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Kaavion otsikko" @@ -1413,7 +1414,7 @@ msgstr "Selitä SQL-kysely" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Aika" @@ -1511,7 +1512,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" @@ -1568,7 +1569,7 @@ msgid "Cancel" msgstr "Peruuta" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Lataa" @@ -1717,7 +1718,7 @@ msgstr "Piilota SQL-kyselykenttä" msgid "Show query box" msgstr "Näytä kyselykenttä" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1730,7 +1731,7 @@ msgstr "Muokkaa" msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1812,7 +1813,7 @@ msgstr "Tietopisteen sisältö" msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopioi" @@ -1828,7 +1829,7 @@ msgstr "Rivimerkkijono" msgid "Polygon" msgstr "Monikulmio" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2326,33 +2327,33 @@ msgstr "tunnissa" msgid "per day" msgstr "päivässä" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Olemassa oleva asetustiedosto (%s) ei ole luettavissa." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Väärät pääsyasetukset asetustiedostolla, sen ei kuuluisi olla kaikkien " "kirjoitettavissa!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Fonttikoko" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Nouseva" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2508,14 +2509,14 @@ msgstr "Selaa" msgid "Delete the matches for the %s table?" msgstr "Poista taulusta %s löytyneet tulokset?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Poista" @@ -2606,16 +2607,11 @@ msgstr "vaakatasossa (kierretyt otsikot)" msgid "vertical" msgstr "pystysuorassa" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Otsikot joka %s rivi" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Lajittele avaimen mukaan" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2642,93 +2638,93 @@ msgstr "Lajittele avaimen mukaan" msgid "Options" msgstr "Valinnat" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Osittaiset tekstit" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Koko tekstit" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relaatioavain" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relaationäyttökenttä" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Näytä binäärisisältö" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "piilota webselaimen muunnos" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Lopeta" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Saattaa olla summittainen. Katso [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "lauseessa" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " -"%sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" +"sohjeista%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Näkyvillä rivit" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "yhteensä" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Kysely kesti %01.4f s." -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2737,8 +2733,8 @@ msgstr "Kysely kesti %01.4f s." msgid "With selected:" msgstr "Valitut:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2749,45 +2745,45 @@ msgstr "Valitut:" msgid "Check All" msgstr "Valitse kaikki" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Vienti" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Luo näkymä" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Tulostusversio" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Näytä kaavio" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -2866,38 +2862,38 @@ msgstr "Indeksiä ei ole määritelty!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksit" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinaliteetti" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Aakkosjärjestys" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentti" @@ -2939,7 +2935,7 @@ msgstr "Näkymä" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Rakenne" @@ -3084,15 +3080,15 @@ msgstr[1] "%1$d riviä lisätty." msgid "Error while creating PDF:" msgstr "Virhe luotaessa PDF-tiedostoa:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Äskeistä taulua ei voitu tallentaa" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Äskeiset taulut" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Äskeisiä tauluja ei ole" @@ -3339,7 +3335,7 @@ msgid "Maximum rows to plot" msgstr "Tulostettavien rivien enimmäismäärä" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Selaa viitearvoja" @@ -3451,20 +3447,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - " -"-1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" +"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - -" +"1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä " -"-1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " +"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä -" +"1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 - 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3703,7 +3699,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3764,7 +3760,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Muokkaus" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilointi" @@ -4214,8 +4210,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/" -"Bzip2]bzip2[/a]-pakkausta" +"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/Bzip2]" +"bzip2[/a]-pakkausta" #: libraries/config/messages.inc.php:27 msgid "Bzip2" @@ -4228,8 +4224,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Määrittää minkä tyyppistä muokkaustoimintoa tulisi käyttää CHAR- ja VARCHAR-" -"kentissä; [kbd]input[/kbd] - sallii syötön pituuden rajoittamisen, " -"[kbd]textarea[/kbd] - sallii kentissä uudet rivit" +"kentissä; [kbd]input[/kbd] - sallii syötön pituuden rajoittamisen, [kbd]" +"textarea[/kbd] - sallii kentissä uudet rivit" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4237,8 +4233,8 @@ msgstr "CHAR-sarakkeiden muokkaus" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4790,9 +4786,8 @@ msgstr "Sivun otsikot" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -4977,8 +4972,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/" -"Gzip]gzip[/a]-pakkausta" +"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/Gzip]gzip" +"[/a]-pakkausta" #: libraries/config/messages.inc.php:235 msgid "GZip" @@ -5590,8 +5585,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]kirjanmerkki[/a]tukea; oletusarvo: [kbd]pma_bookmark[/kbd]" +"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:377 msgid "Bookmark table" @@ -5600,11 +5595,11 @@ msgstr "Kirjanmerkkitaulu" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua sarakkeiden kommentteja ja mime-tyyppejä; " "oletusarvo: [kbd]pma_column_info[/kbd]" @@ -5640,8 +5635,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Erityinen MySQL-käyttäjä, jolle on määritetty rajatut käyttöoikeudet; " -"lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/" -"controluser]wikissä[/a]" +"lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/controluser]wikissä" +"[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5679,8 +5674,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: " -"[kbd]pma_designer_coords[/kbd]" +"Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5719,14 +5714,14 @@ msgstr "Piilota tietokannat" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: " -"[kbd]pma_history[/kbd]" +"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5795,8 +5790,8 @@ msgstr "Config-todennuksen salasana" 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]" +"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5834,8 +5829,8 @@ msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: " -"[kbd]pma_recent[/kbd]" +"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" +"pma_recent[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Recently used table" @@ -5847,11 +5842,11 @@ msgstr "Viimeisimmäksi käytetty taulu" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/" -"relation]relaatiolinkki[/a]tukea; oletusarvo: [kbd]pma_relation[/kbd]" +"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:421 msgid "Relation table" @@ -5867,8 +5862,8 @@ msgstr "SHOW DATABASES -käsky" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/" "a] esimerkit" @@ -5908,8 +5903,8 @@ 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]" +"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea; oletusarvo: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5918,8 +5913,8 @@ msgstr "PDF-kaavio: taulun koordinaatit" #: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "" -#| "to describe the display fields, leave blank for no support; gested: " -#| "d]pma_table_info[/kbd]" +#| "to describe the display fields, leave blank for no support; gested: d]" +#| "pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" @@ -5939,8 +5934,8 @@ msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: " -"[kbd]pma_table_uiprefs[/kbd]" +"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" +"pma_table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -5987,14 +5982,14 @@ msgstr "Jäljitettävä lauseke" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" +#| "Leave blank for no SQL query tracking support, suggested: [kbd]" +#| "pma_tracking[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: " -"[kbd]pma_history[/kbd]" +"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -6015,11 +6010,11 @@ msgstr "Automaattisesti luodut versiot" #| msgid "" #| "blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: " -"[kbd]pma_history[/kbd]" +"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -6215,8 +6210,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Käyttäjänimi" @@ -6370,8 +6365,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a]-pakkausta" +"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/ZIP_" +"(file_format)]ZIP[/a]-pakkausta" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -6630,7 +6625,7 @@ msgstr "Tietokanta(-kannat):" msgid "Table(s):" msgstr "Taulu(t):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rivit:" @@ -6679,8 +6674,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on tukittu %1$sstrftime%2$s mukaan, joten voi käyttää " "ajanmuodostostusmerkkijonoja. Lisäksi tapahtuu seuraavat muutokset: %3$s. " @@ -7237,8 +7232,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7254,7 +7249,7 @@ msgid "No data found for GIS visualization." msgstr "GIS visualisoinnille ei ole tietoja." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." @@ -7389,11 +7384,11 @@ msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa." -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -7450,7 +7445,7 @@ msgstr "Käytä indeksiä/indeksejä" msgid "Add prefix" msgstr "Käytä indeksiä/indeksejä" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7785,17 +7780,17 @@ msgid "Drop the database (DROP)" msgstr "Tuhoa tietokanta (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Vain rakenne" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Rakenne ja tiedot" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Vain tiedot" @@ -7966,11 +7961,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " -"%1$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" +"$sasetusskriptillä%2$s." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8234,7 +8229,7 @@ msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8242,7 +8237,7 @@ msgstr "Palvelin" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8260,7 +8255,7 @@ msgstr "PHP:n versio" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8668,8 +8663,8 @@ msgstr "" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 #, fuzzy #| msgid "" -#| "ys the contents of the field as-is, without running it through " -#| "ecialchars(). That is, the field is assumed to contain valid HTML." +#| "ys the contents of the field as-is, without running it through ecialchars" +#| "(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -9503,7 +9498,7 @@ msgstr "Attribuutit" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Lisätiedot" @@ -9674,7 +9669,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versio" @@ -10150,8 +10145,8 @@ msgstr "Käyttäjien yleiskatsaus" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " @@ -10166,62 +10161,289 @@ msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekunti" +msgstr[1] "Sekunti" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuutti" +msgstr[1] "Minuutti" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Näytä tilastot" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Valitse taulut" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Kyselyn tyyppi" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Tiedot" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Käytä indeksiä/indeksejä" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Tuhoa tietokanta" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Näytä alipalvelimen tilan taulu" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Valitse taulut" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Virheellinen taulun nimi" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Lisää uusi palvelin" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL-kyselyt" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Käynnistä" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Käytä korostusta" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Päivitä" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR-tekstikentän sarakkeet" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Virheiden hallinta:" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Palauta oletusarvoon" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-kyselyn tulos" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Luontiympäristö" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Tiedoston koonkasvatusmäärä" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Toinen" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Käynnistys" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Kokonaisaika:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Aika" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Sulje" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Aika" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Tallenna SQL-kysely" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Tunniste" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10242,10 +10464,6 @@ msgstr "Tyhjennä" msgid "Bookmark this SQL query:" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki" @@ -10383,7 +10601,7 @@ msgstr "Valitse taulut, joissa on ylijäämää" msgid "Sort" msgstr "Järjestä" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10557,7 +10775,7 @@ msgstr "Pätevä" msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -10731,7 +10949,7 @@ msgstr "Virhe ZIP-paketissa:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" @@ -10789,7 +11007,7 @@ msgstr "Vaihda pieneksi/suureksi" msgid "Toggle relation lines" msgstr "Valitaksesi relaation, paina :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Tuo/vie PDF-skeeman koordinaatit" @@ -10862,46 +11080,46 @@ msgstr "Luo" msgid "Active options" msgstr "Taulun valinnat" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Taulu %1$s on luotu." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "sivua" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Tuo tiedostoja" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Vie valitulle sivulle" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Luo sivu ja vie se" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Uuden sivun nimi: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Vie/tuo skaalaan" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "suositus" @@ -10931,7 +11149,7 @@ msgstr "Sisäinen relaatio luotu" msgid "Relation deleted" msgstr "Relaatio poistettu" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Virhe tallennettaessa koordinaatteja Suunnittelijaan." @@ -11389,218 +11607,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Tiedot" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Käytä indeksiä/indeksejä" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Tuhoa tietokanta" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Näytä alipalvelimen tilan taulu" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Valitse taulut" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Virheellinen taulun nimi" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Lisää uusi palvelin" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL-kyselyt" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Näytä tilastot" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Valitse taulut" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Kyselyn tyyppi" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekunti" -msgstr[1] "Sekunti" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minuutti" -msgstr[1] "Minuutti" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Käynnistä" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Käytä korostusta" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Päivitä" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR-tekstikentän sarakkeet" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Virheiden hallinta:" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Palauta oletusarvoon" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12685,11 +12691,11 @@ msgid "" msgstr "" "Jos näet tarpeelliseksi, käytä suojauksen lisäasetuksia eli [a@?" "page=servers&mode=edit&id=%1$d#tab_Server_config]palvelimen " -"todennusasetuksia[/a] ja [a@?page=form&" -"formset=features#tab_Security]luotettujen välipalvelimien luetteloa[/a]. IP-" -"osoitteeseen perustuva suojaus ei kuitenkaan ole täysin luotettava, mikäli " -"IP-osoite kuuluu Internet-palveluntarjoajalle, johon sinun lisäksesi " -"tuhannet käyttäjät ovat yhteydessä." +"todennusasetuksia[/a] ja [a@?page=form&formset=features#tab_Security]" +"luotettujen välipalvelimien luetteloa[/a]. IP-osoitteeseen perustuva suojaus " +"ei kuitenkaan ole täysin luotettava, mikäli IP-osoite kuuluu Internet-" +"palveluntarjoajalle, johon sinun lisäksesi tuhannet käyttäjät ovat " +"yhteydessä." #: setup/lib/index.lib.php:316 #, fuzzy, php-format @@ -12703,15 +12709,15 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Asetit [kbd]config[/kbd]-todennustyypin ja sisällytit käyttäjänimen ja " "salasanan automaattista kirjautumista varten. Tämä ei ole suotava vaihtoehto " "oikeille palvelimille. Joka tietää tai arvaa phpMyAdmin-osoitteesi pystyy " "suoraan käyttämään phpMyAdmin-paneeliasi. [a@?page=servers&" -"mode=edit&id=%1$d#tab_Server]Todennustyypiksi[/a] kannattaa asettaa " -"[kbd]cookie[/kbd] tai [kbd]http[/kbd]." +"mode=edit&id=%1$d#tab_Server]Todennustyypiksi[/a] kannattaa asettaa [kbd]" +"cookie[/kbd] tai [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, fuzzy, php-format @@ -12774,28 +12780,28 @@ msgstr "" msgid "Wrong data" msgstr "Ei tietokantoja" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Kirjanmerkki %s luotu" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12808,21 +12814,11 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Tallenna SQL-kysely" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Tunniste" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -13076,34 +13072,34 @@ msgstr "Valitse näytettävä sarake" msgid "No column selected." msgstr "Ei yhtään riviä valittu" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Taulun `%s` seurantaraportti" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-lauseet suoritettu." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13111,125 +13107,125 @@ msgstr "" "Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, " "että sinulla on oikeudet toiminnon suorittamiseen." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s kuvaus (SQL-koodi)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Seurantalauseet" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Poista tämän taulun seurantatiedot" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ei tietokantoja" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Päiväys" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Tiedon määritelmän lause" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Tiedon käsittelyn lause" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-vedos (tiedoston lataus)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-vedos" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-suoritus" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Vie kohteena %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Näytä versiot" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Poista kohteen %s.%s seuranta" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Poista käytöstä nyt" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Ota käyttöön kohteen %s.%s seuranta" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ota käyttöön nyt" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Luo versio %s kohteesta %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Luo versio" @@ -13620,8 +13616,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13756,8 +13752,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14485,6 +14481,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Enim. yhtäaikaisia yhteyksiä" +#~ msgid "Headers every %s rows" +#~ msgstr "Otsikot joka %s rivi" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14780,14 +14779,14 @@ msgstr "Enim. yhtäaikaisia yhteyksiä" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Kun tälle asetetaan arvo [kbd]nested[/kbd], taulun nimen aliasta " -#~ "käytetään taulujen jakamiseen ja sisäkkäin asettamiseen " -#~ "$cfg['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain " -#~ "kansiota kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana" +#~ "käytetään taulujen jakamiseen ja sisäkkäin asettamiseen $cfg" +#~ "['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain kansiota " +#~ "kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana" #~ msgid "Display table comment instead of its name" #~ msgstr "Näytä taulun kommentti, ei nimi" @@ -14845,8 +14844,8 @@ msgstr "Enim. yhtäaikaisia yhteyksiä" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." #~ msgstr "" -#~ "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä " -#~ "%s tekee." +#~ "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä %" +#~ "s tekee." #~ msgid "" #~ "MIME types printed in italics do not have a separate transformation " @@ -14972,8 +14971,8 @@ msgstr "Enim. yhtäaikaisia yhteyksiä" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta " -#~ "%s?" +#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/fr.po b/po/fr.po index fe89510992..870493f79f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-12 16:43+0200\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French \n" -"Language: fr\n" +"Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +46,7 @@ msgid "Search:" msgstr "Rechercher : " #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +75,21 @@ msgstr "Rechercher : " #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Exécuter" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nom de l'index" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Description" @@ -107,7 +108,7 @@ msgstr "" "Le fichier %s n'est pas disponible sur ce serveur, veuillez visiter www." "phpmyadmin.net pour plus d'informations." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." @@ -135,7 +136,7 @@ msgstr "Commentaires sur la table : " #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Colonne" @@ -158,7 +159,7 @@ msgstr "Colonne" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Type" @@ -175,7 +176,7 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -190,7 +191,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Défaut" @@ -232,9 +233,9 @@ msgstr "Commentaires" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Non" @@ -259,9 +260,9 @@ msgstr "Non" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Oui" @@ -313,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Table" @@ -389,7 +390,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de données" @@ -397,17 +398,17 @@ msgstr "Base de données" msgid "Last version" msgstr "Dernière version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Créé" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Mis à jour" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "État" @@ -420,7 +421,7 @@ msgstr "État" msgid "Action" msgstr "Action" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Afficher" @@ -436,11 +437,11 @@ msgstr "Supprimer les données de suivi de cette table" msgid "Drop" msgstr "Supprimer" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "actif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "non activé" @@ -448,11 +449,11 @@ msgstr "non activé" msgid "Versions" msgstr "Versions" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Rapport de suivi" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Instantané" @@ -596,14 +597,14 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field" msgstr "" -"Choisissez «GeomFromText» depuis la colonne «Fonction» et collez la chaîne " -"ci dessous dans le champ «Valeur»" +"Choisissez «GeomFromText» depuis la colonne «Fonction» et collez la chaîne ci " +"dessous dans le champ «Valeur»" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour trouver le moyen de " @@ -653,7 +654,7 @@ msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" @@ -680,7 +681,7 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -892,7 +893,7 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." @@ -901,7 +902,7 @@ msgstr "La commande «DROP DATABASE» est désactivée." msgid "Do you really want to execute \"%s\"?" msgstr "Voulez-vous vraiment exécuter «%s» ?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -985,8 +986,8 @@ msgstr "Chargement des privilèges en cours" msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Fermer" @@ -1113,13 +1114,13 @@ msgstr "o" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "Mio" @@ -1158,7 +1159,7 @@ msgid "Traffic" msgstr "Trafic" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Paramètres" @@ -1178,13 +1179,14 @@ msgstr "Ajouter graphique à la grille" msgid "Please add at least one variable to the series" msgstr "Veuillez ajouter au moins une variable à la série" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Aucune" @@ -1284,7 +1286,7 @@ msgstr "Changer les paramètres" msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Titre du graphique" @@ -1372,7 +1374,7 @@ msgstr "Expliquer les résultats" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Moment" @@ -1469,7 +1471,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1526,7 +1528,7 @@ msgid "Cancel" msgstr "Annuler" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Chargement en cours" @@ -1674,7 +1676,7 @@ msgstr "Cacher zone SQL" msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1687,7 +1689,7 @@ msgstr "Modifier" msgid "No rows selected" msgstr "Aucune ligne n'a été sélectionnée" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1772,7 +1774,7 @@ msgstr "Données reliées à ce point" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copier" @@ -1788,7 +1790,7 @@ msgstr "Ligne" msgid "Polygon" msgstr "Polygone" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Géométrie" @@ -2277,33 +2279,33 @@ msgstr "par heure" msgid "per day" msgstr "par jour" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Le fichier de configuration (%s) est illisible." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissions sur le fichier de configuration incorrectes, il ne doit pas être " "en écriture pour tout le monde !" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Taille du texte" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Croissant" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2446,14 +2448,14 @@ msgstr "Afficher" msgid "Delete the matches for the %s table?" msgstr "Supprimer de la table %s les occurences ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Effacer" @@ -2540,16 +2542,11 @@ msgstr "horizontal (en-têtes pivotés)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "En-têtes à chaque %s ligne" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Trier sur l'index" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2576,91 +2573,91 @@ msgstr "Trier sur l'index" msgid "Options" msgstr "Options" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Textes réduits" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Textes complets" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relations : clés" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relations : colonnes descriptives" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Montrer le contenu binaire" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Montrer le contenu binaire en hexadécimal" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Masquer les transformations" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "La ligne a été effacée" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Supprimer" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "dans la requête" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " -"%sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" +"sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Affichage des lignes" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2669,8 +2666,8 @@ msgstr "Traitement en %01.4f sec" msgid "With selected:" msgstr "Pour la sélection : " -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2681,45 +2678,45 @@ msgstr "Pour la sélection : " msgid "Check All" msgstr "Tout cocher" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporter" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Créer une vue" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Version imprimable" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Lien absent" @@ -2769,8 +2766,8 @@ msgstr "Erreur inconnue durant le téléchargement." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Erreur lors du déplacement du fichier téléchargé, voir [doc@faq1-11]FAQ " -"1.11[/doc]" +"Erreur lors du déplacement du fichier téléchargé, voir [doc@faq1-11]FAQ 1.11" +"[/doc]" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -2801,38 +2798,38 @@ msgstr "Aucun index n'est défini !" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Compressé" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalité" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Interclassement" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Commentaire" @@ -2874,7 +2871,7 @@ msgstr "Vue" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structure" @@ -3019,15 +3016,15 @@ msgstr[1] "%1$d lignes insérées." msgid "Error while creating PDF:" msgstr "Erreur pendant la création du PDF : " -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Impossible de sauvegarder l'historique des tables récentes" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tables récentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Il n'y a pas de tables récentes" @@ -3198,8 +3195,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Echec lors de la tentative de vidage de la table UI Préférences (voir " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Echec lors de la tentative de vidage de la table UI Préférences (voir $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1603 #, php-format @@ -3269,7 +3266,7 @@ msgid "Maximum rows to plot" msgstr "Nombre maximum de lignes de données à utiliser pour le graphique" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" @@ -3335,16 +3332,16 @@ msgstr "Thème : " msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de " -"-128 à 127. Pour les nombres sans signe, c'est de 0 à 255" +"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de -" +"128 à 127. Pour les nombres sans signe, c'est de 0 à 255" #: libraries/Types.class.php:298 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de " -"-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" +"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de -" +"32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" #: libraries/Types.class.php:300 msgid "" @@ -3383,16 +3380,16 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Un petit nombre en virgule flottante, la fourchette des valeurs est " -"-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" +"Un petit nombre en virgule flottante, la fourchette des valeurs est -" +"3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un nombre en virgule flottante double-précision, la fourchette des valeurs " @@ -3442,9 +3439,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à " -"«2038-01-09 03:14:07» UTC, en nombre de secondes depuis le moment de " -"référence («1970-01-01 00:00:00» UTC)" +"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à «2038-" +"01-09 03:14:07» UTC, en nombre de secondes depuis le moment de référence " +"(«1970-01-01 00:00:00» UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:729 #, php-format @@ -3683,7 +3680,7 @@ msgstr "Une énumération, choisie parmi la liste de valeurs définies" msgid "Max: %s%s" msgstr "Taille maximum: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Requête SQL : " @@ -3742,7 +3739,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En ligne" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilage" @@ -4208,9 +4205,9 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" -"Déterminer la méthode d'édition pour les colonnes CHAR et VARCHAR; " -"[kbd]input[/kbd] - permet de limiter la taille, [kbd]textarea[/kbd] - permet " -"la saisie de sauts de lignes" +"Déterminer la méthode d'édition pour les colonnes CHAR et VARCHAR; [kbd]input" +"[/kbd] - permet de limiter la taille, [kbd]textarea[/kbd] - permet la saisie " +"de sauts de lignes" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4218,8 +4215,8 @@ msgstr "Édition des colonnes CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Utiliser un éditeur convivial pour les requêtes SQL ([a@http://codemirror." "net/]CodeMirror[/a]) avec coloration syntaxique et numérotation des lignes" @@ -4760,9 +4757,8 @@ msgstr "Titres de page" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Spécifier le texte de la barre de titre du navigateur. Se référer à la " "[doc@cfg_TitleTable]documentation[/doc] pour les chaînes magiques pouvant " @@ -5539,9 +5535,9 @@ msgid "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -"Le chemin du fichier de configuration pour [a@http://swekey." -"com]l'authentification matérielle Swekey[/a] (ne pas placer sous la racine " -"des documents; suggestion : /etc/swekey.conf)" +"Le chemin du fichier de configuration pour [a@http://swekey.com]" +"l'authentification matérielle Swekey[/a] (ne pas placer sous la racine des " +"documents; suggestion : /etc/swekey.conf)" #: libraries/config/messages.inc.php:373 msgid "SweKey config file" @@ -5569,8 +5565,8 @@ msgstr "Table pour signets" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Laisser vider pour désactiver les commentaires sur les colonnes et les types " "MIME; suggestion : [kbd]pma__column_info[/kbd]" @@ -5794,8 +5790,8 @@ msgstr "Table récemment utilisée" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Laisser vider pour désactiver le support [a@http://wiki.phpmyadmin.net/pma/" "relation]relationnel[/a], suggestion : [kbd]pma__relation[/kbd]" @@ -5814,11 +5810,11 @@ msgstr "Commande SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] pour un exemple" +"Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] pour un exemple" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5929,11 +5925,11 @@ msgstr "Énoncés à suivre" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Laisser vide pour désactiver le suivi des changements SQL; suggestion : " -"[kbd]pma__tracking[/kbd]" +"Laisser vide pour désactiver le suivi des changements SQL; suggestion : [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5953,11 +5949,11 @@ msgstr "Création automatique de versions" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Laisser vide pour désactiver les préférences utilisateur; suggestion : " -"[kbd]pma__config[/kbd]" +"Laisser vide pour désactiver les préférences utilisateur; suggestion : [kbd]" +"pma__config[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -6170,8 +6166,8 @@ msgstr "" "Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] " "par défaut)" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Utilisateur" @@ -6583,7 +6579,7 @@ msgstr "Base(s) de données : " msgid "Table(s):" msgstr "Table(s) : " -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Lignes : " @@ -6632,8 +6628,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -6812,8 +6808,8 @@ msgid "" msgstr "" "Permettre l'interruption de l'importation si la limite de temps configurée " "dans PHP est sur le point d'être atteinte. (Ceci pourrait aider à " -"importer des fichiers volumineux, au détriment du respect des " -"transactions.)" +"importer des fichiers volumineux, au détriment du respect des transactions.)" +"" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -7193,8 +7189,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -7212,7 +7208,7 @@ msgid "No data found for GIS visualization." msgstr "Données non disponibles pour visualisation GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." @@ -7334,11 +7330,11 @@ msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -7383,7 +7379,7 @@ msgstr "Ajouter un préfixe de table : " msgid "Add prefix" msgstr "Ajouter un préfixe" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Voulez-vous vraiment exécuter la requête suivante ?" @@ -7711,17 +7707,17 @@ msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Structure seule" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structure et données" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Données seulement" @@ -7882,8 +7878,8 @@ msgstr "Bienvenue dans %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -8135,13 +8131,13 @@ msgstr "Afficher les noms de colonnes en première ligne : " #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Client : " #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Généré le : " @@ -8155,7 +8151,7 @@ msgstr "Version de PHP : " #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Base de données : " @@ -8227,8 +8223,8 @@ msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -"Entourer les noms des tables et des colonnes par des guillemets obliques " -"(Protège les noms de tables et de colonnes comportant des caractères " +"Entourer les noms des tables et des colonnes par des guillemets obliques " +"(Protège les noms de tables et de colonnes comportant des caractères " "spéciaux ou des mots réservés)" #: libraries/plugins/export/ExportSql.class.php:295 @@ -8434,7 +8430,6 @@ msgstr "" "et essayer à nouveau." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Analyse incorrecte du tableur OpenDocument !" @@ -9292,7 +9287,7 @@ msgstr "Attributs" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9455,7 +9450,7 @@ msgid "Library" msgstr "Bibliothèque" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9925,8 +9920,8 @@ msgstr "Survol des utilisateurs" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " @@ -9941,46 +9936,264 @@ msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d seconde" +msgstr[1] "%d secondes" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minute" +msgstr[1] "%d minutes" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistiques des journaux" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Sélectionnez un intervalle de temps : " + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Enlever les données variables des énoncés INSERT pour un meilleur groupement" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Choisissez depuis quel journal les statistiques doivent être générées." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Les résultats sont regroupés par le texte des requêtes." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analyseur de requêtes" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Consignes pour la surveillance" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Le moniteur phpMyAdmin peut vous aider à optimiser la configuration du " +"serveur et à traquer les requêtes qui prennent beaucoup de temps. Pour ce " +"faire vous devrez régler le paramètre log_output à 'TABLE' et activer le " +"journal slow_query_log ou general_log. Cependant, general_log produit " +"beaucoup de données et augmente jusqu'à 15% la charge du serveur." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Votre serveur ne supporte pas l'enregistrement du journal vers une table, ce " +"qui est requis pour l'analyse des journaux par phpMyAdmin. Cette fonction " +"est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même " +"utiliser les graphiques de serveur." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilisation de la surveillance : " + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Votre navigateur va rafraîchir les graphiques à intervalle régulier. Vous " +"pouvez ajouter des graphiques et modifier le taux de rafraîchissement sous " +"«Paramètres», ou supprimer tout graphique via l'cône de rouage." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Pour afficher des requêtes à partir des journaux, sélectionnez la portion de " +"temps pertinente sur l'un des graphiques en tenant enfoncé le bouton gauche " +"de la souris et en vous déplaçant sur le graphique. Ceci va charger les " +"statistiques sous forme de requêtes groupées, par la suite vous pouvez " +"cliquer sur tout énoncé SELECT pour une analyse plus poussée." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Note : " + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activer le journal general_log peut causer une augmentation de charge de 5 à " +"15%. Également, la génération des statistiques à partir des journaux est une " +"tâche intensive, donc il est suggéré de ne sélectionner qu'une petite " +"portion de temps et de désactiver general_log puis de vider la table " +"correspondante lorsque la surveillance n'est plus requise." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Ajouter un graphique" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Graphique prédéfini" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variables d'état" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Choisissez les séries : " + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Couramment surveillés" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ou entrez un nom de variable : " + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Afficher en tant que valeur différentielle" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Appliquer un diviseur" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Ajouter l'unité aux valeurs de données" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Ajouter cette série" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Effacer la série" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Séries dans le graphique : " + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Démarrer la surveillance" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Consignes / réglages" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "La modification par glissement des graphiques est terminée" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Active le mode glissement" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Taux de rafraîchissement" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Colonnes du graphique" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Disposition du graphique" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"La disposition du graphique est stockée dans le navigateur. Vous pouvez " +"vouloir l'exporter si vous avez une configuration complexe." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Ramener la valeur par défaut" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Résultat de la requête SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Généré par : " -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Profil détaillé" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Ordre" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "État" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Résumé par état" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Temps total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Temps" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Appels" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "Temps moyen" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Conserver cette requête SQL dans les signets" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Intitulé : " + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Signet visible pour les autres utilisateurs" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9999,10 +10212,6 @@ msgstr "Vider" msgid "Bookmark this SQL query:" msgstr "Conserver cette requête SQL dans les signets : " -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Signet visible pour les autres utilisateurs" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Remplacer un signet existant du même nom" @@ -10092,8 +10301,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la " -"%sdocumentation%s." +"PHP nécessaires ont bien été installées tel que décrit dans la %" +"sdocumentation%s." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10142,7 +10351,7 @@ msgstr "Cocher tables avec pertes" msgid "Sort" msgstr "Tri" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Aucune" @@ -10296,7 +10505,7 @@ msgstr "Effectif" msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Erreur de requête" @@ -10448,7 +10657,7 @@ msgstr "Erreur rencontrée dans l'archive ZIP : " msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Erreur fatale : la navigation requiert AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" @@ -10504,7 +10713,7 @@ msgstr "Bascule agrandir/réduire" msgid "Toggle relation lines" msgstr "Basculement des lignes de relations" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Exporter les coordonnées pour le schéma PDF" @@ -10562,39 +10771,39 @@ msgstr "Regroupement" msgid "Active options" msgstr "Options actives" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "La page a été créée" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Échec de création de page" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Page : " -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importer depuis la page sélectionnée" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exporter vers la page sélectionnée" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Créer une page et y exporter" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nom de la nouvelle page : " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exporter/Importer à l'échelle : " -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recommandé" @@ -10622,7 +10831,7 @@ msgstr "Relation interne ajoutée" msgid "Relation deleted" msgstr "Relation supprimée" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Erreur lors de la sauvegarde des coordonnées Concepteur." @@ -11076,211 +11285,6 @@ msgstr "" "serveur et défaire le changement si aucune amélioration mesurable ne s'est " "produite." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Consignes pour la surveillance" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Le moniteur phpMyAdmin peut vous aider à optimiser la configuration du " -"serveur et à traquer les requêtes qui prennent beaucoup de temps. Pour ce " -"faire vous devrez régler le paramètre log_output à 'TABLE' et activer le " -"journal slow_query_log ou general_log. Cependant, general_log produit " -"beaucoup de données et augmente jusqu'à 15% la charge du serveur." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Votre serveur ne supporte pas l'enregistrement du journal vers une table, ce " -"qui est requis pour l'analyse des journaux par phpMyAdmin. Cette fonction " -"est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même " -"utiliser les graphiques de serveur." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilisation de la surveillance : " - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Votre navigateur va rafraîchir les graphiques à intervalle régulier. Vous " -"pouvez ajouter des graphiques et modifier le taux de rafraîchissement sous " -"«Paramètres», ou supprimer tout graphique via l'cône de rouage." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Pour afficher des requêtes à partir des journaux, sélectionnez la portion de " -"temps pertinente sur l'un des graphiques en tenant enfoncé le bouton gauche " -"de la souris et en vous déplaçant sur le graphique. Ceci va charger les " -"statistiques sous forme de requêtes groupées, par la suite vous pouvez " -"cliquer sur tout énoncé SELECT pour une analyse plus poussée." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Note : " - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activer le journal general_log peut causer une augmentation de charge de 5 à " -"15%. Également, la génération des statistiques à partir des journaux est une " -"tâche intensive, donc il est suggéré de ne sélectionner qu'une petite " -"portion de temps et de désactiver general_log puis de vider la table " -"correspondante lorsque la surveillance n'est plus requise." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Ajouter un graphique" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Graphique prédéfini" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variables d'état" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Choisissez les séries : " - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Couramment surveillés" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ou entrez un nom de variable : " - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Afficher en tant que valeur différentielle" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Appliquer un diviseur" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Ajouter l'unité aux valeurs de données" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Ajouter cette série" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Effacer la série" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Séries dans le graphique : " - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistiques des journaux" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Sélectionnez un intervalle de temps : " - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Enlever les données variables des énoncés INSERT pour un meilleur groupement" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Choisissez depuis quel journal les statistiques doivent être générées." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Les résultats sont regroupés par le texte des requêtes." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analyseur de requêtes" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d seconde" -msgstr[1] "%d secondes" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minute" -msgstr[1] "%d minutes" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Démarrer la surveillance" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Consignes / réglages" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "La modification par glissement des graphiques est terminée" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Active le mode glissement" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Taux de rafraîchissement" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Colonnes du graphique" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Disposition du graphique" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"La disposition du graphique est stockée dans le navigateur. Vous pouvez " -"vouloir l'exporter si vous avez une configuration complexe." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Ramener la valeur par défaut" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12234,8 +12238,8 @@ msgid "" msgstr "" "Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " "de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " -"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance" -"%s." +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" +"s." #: setup/lib/index.lib.php:300 msgid "" @@ -12287,8 +12291,8 @@ msgid "" msgstr "" "Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " "secondes peut causer des interruptions de la session de travail si le " -"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement " -"%d)." +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" +"d)." #: setup/lib/index.lib.php:310 #, php-format @@ -12307,8 +12311,8 @@ msgid "" "cookie validity%s must be set to a value less or equal to it." msgstr "" "Si vous utilisez l'authentification cookie et que le paramètre %sLogin " -"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity" -"%s doit avoir une valeur plus petite ou égale à celui-ci." +"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%" +"s doit avoir une valeur plus petite ou égale à celui-ci." #: setup/lib/index.lib.php:314 #, php-format @@ -12318,8 +12322,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " -"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" +"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." @@ -12330,8 +12334,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "La méthode d'authentification [kbd]config[/kbd] permet une connexion " "automatique, ce qui n'est pas souhaitable dans un environnement réel. Toute " @@ -12383,24 +12387,24 @@ msgstr "" msgid "Wrong data" msgstr "Données incorrectes" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Le signet «%s» a été utilisé comme requête par défaut." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Signet non créé" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12410,19 +12414,11 @@ msgstr "" "cases à cocher ainsi que les liens Edition, Copie et Supprimer ne sont pas " "disponibles." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Il y a des problèmes avec les index de la table `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Conserver cette requête SQL dans les signets" - -#: sql.php:1191 -msgid "Label:" -msgstr "Intitulé : " - #: tbl_chart.php:38 msgid "No data to display" msgstr "Rien à afficher" @@ -12630,31 +12626,31 @@ msgstr "Colonne descriptive : " msgid "No column selected." msgstr "Aucune colonne n'a été sélectionnée." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Rapport de suivi pour la table `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s créée, le suivi pour %2$s est activé." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Le suivi de %1$s a été désactivé à la version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Le suivi de %1$s a été activé à la version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Énoncés SQL exécutés." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12663,113 +12659,113 @@ msgstr "" "temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à " "cette opération." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Enlevez les deux lignes suivantes si elles sont inutiles." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Le suivi des définitions de données a été effacé avec succès" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Le suivi des manipulations de données a été effacé avec succès" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Suivi des énoncés" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Montrer %1$s depuis le %2$s jusqu'au %3$s par l'utilisateur %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Supprimer du rapport le suivi des données" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Aucune donnée" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Date" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Énoncé de définition de données" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Énoncé de manipulation de données" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Exportation SQL (télécharger)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Exportation SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Cette option remplacera votre table et son contenu." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Exécution SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exporter en tant que %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Montrer les versions" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Désactiver le suivi de %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Désactiver maintenant" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activer le suivi de %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activer maintenant" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Créer la version %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Suivre les énoncés de définition de données suivants : " -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Suivre les énoncés de manipulation de données suivants : " -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Créer une version" @@ -13175,8 +13171,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Le ratio actuel de mémoire libre pour la cache de requêtes par rapport à la " "mémoire totale de la cache est de %s%%. Il devrait se situer à plus de 80%%" @@ -13247,9 +13243,9 @@ msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " "value is, the better (This rules firing limit: 0.1%%)" msgstr "" -"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s" -"%%. Il est souhaitable que cette valeur soit faible (Limite pour cette " -"règle: 0.1%%)" +"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s%" +"%. Il est souhaitable que cette valeur soit faible (Limite pour cette règle: " +"0.1%%)" #: libraries/advisory_rules.txt:195 msgid "Query cache max size" @@ -13328,8 +13324,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de tous les tris causent la création de tables temporaires, cette " "valeur devrait être sous les 10%%." @@ -13860,8 +13856,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections est à %s%% de max_connections, devrait être sous les " -"80%%" +"Max_used_connections est à %s%% de max_connections, devrait être sous les 80%" +"%" #: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" @@ -14100,6 +14096,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "Headers every %s rows" +#~ msgstr "En-têtes à chaque %s ligne" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14399,9 +14398,9 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Si défini à [kbd]nested[/kbd], l'alias du nom de table ne sert qu'à " #~ "subdiviser les tables selon $cfg['LeftFrameTableSeparator']" diff --git a/po/gl.po b/po/gl.po index eda284066c..cec40b4911 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-04-13 18:37+0200\n" "Last-Translator: Julio Guerra \n" "Language-Team: Galician \n" -"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.5-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Buscar" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Buscar" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Ir" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nome da chave" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descrición" @@ -109,7 +109,7 @@ msgstr "" "O ficheiro %s non está dispoñíbel neste sistema; visite www.phpmyadmin.net " "para obter máis información." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." @@ -139,7 +139,7 @@ msgstr "Comentarios da táboa" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Columna" @@ -162,7 +162,7 @@ msgstr "Columna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipo" @@ -179,7 +179,7 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulo" @@ -194,7 +194,7 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Predeterminado" @@ -236,9 +236,9 @@ msgstr "Comentarios" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Non" @@ -263,9 +263,9 @@ msgstr "Non" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Si" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Táboa" @@ -399,7 +399,7 @@ msgstr "Táboas seguidas" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de datos" @@ -407,17 +407,17 @@ msgstr "Base de datos" msgid "Last version" msgstr "Última versión" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Creada" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Actualizada" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Estado" @@ -430,7 +430,7 @@ msgstr "Estado" msgid "Action" msgstr "Acción" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Mostrar" @@ -446,11 +446,11 @@ msgstr "Eliminar os datos de seguimento desta táboa" msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "activado" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "desactivado" @@ -458,11 +458,11 @@ msgstr "desactivado" msgid "Versions" msgstr "Versións" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Informe de seguimento" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Instantánea da estrutura" @@ -620,11 +620,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " -"%sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" +"sdocumentación%s para averiguar como evitar este límite." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -670,7 +670,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Non foi posíbel importar os engadidos - Comprobe a instalación!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" @@ -697,7 +697,7 @@ msgstr "" "significa que o phpMyAdmin non poderá rematar esta importación a non ser que " "se lle incrementen os límites de tempo de php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -925,10 +925,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na " -"%sdocumentación%s." +"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na %" +"sdocumentación%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes «DROP DATABASE»." @@ -937,7 +937,7 @@ msgstr "Non se permiten as ordes «DROP DATABASE»." msgid "Do you really want to execute \"%s\"?" msgstr "Seguro que quere executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de eliminar (DESTROY) unha base de datos enteira!" @@ -1023,8 +1023,8 @@ msgstr "A recargar os privilexios" msgid "Removing Selected Users" msgstr "A eliminar os usuarios escollidos" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Fechar" @@ -1151,13 +1151,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1196,7 +1196,7 @@ msgid "Traffic" msgstr "Tráfico" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Configuración" @@ -1216,13 +1216,14 @@ msgstr "Engadir unha gráfica á grella" msgid "Please add at least one variable to the series" msgstr "Engada ao menos unha variábel á serie" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ningunha" @@ -1322,7 +1323,7 @@ msgstr "Cambiar a configuración" msgid "Current settings" msgstr "Configuración actual" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Título da gráfica" @@ -1411,7 +1412,7 @@ msgstr "Explicar a saída" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tempo" @@ -1509,7 +1510,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1566,7 +1567,7 @@ msgid "Cancel" msgstr "Cancelar" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "A cargar" @@ -1714,7 +1715,7 @@ msgstr "Agochar a caixa das consultas" msgid "Show query box" msgstr "Mostrar a caixa de consultas" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1727,7 +1728,7 @@ msgstr "Editar" msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1810,7 +1811,7 @@ msgstr "Contido do punto de datos" msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copiar" @@ -1826,7 +1827,7 @@ msgstr "Cadea de liñas" msgid "Polygon" msgstr "Polígono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Xeometría" @@ -2315,33 +2316,33 @@ msgstr "por hora" msgid "per day" msgstr "por día" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "O ficheiro de configuración existente (%s) non e lexíbel." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Os permisos do ficheiro de configuración son incorrectos; non debería poder " "escribir nel todo o mundo!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Tamaño da letra" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2495,14 +2496,14 @@ msgstr "Visualizar" msgid "Delete the matches for the %s table?" msgstr "Eliminar as coincidencias para a táboa %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Eliminar" @@ -2593,16 +2594,11 @@ msgstr "horizontal (cabezallos rotados)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeceiras cada %s filas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Ordenar pola chave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2629,92 +2625,92 @@ msgstr "Ordenar pola chave" msgid "Options" msgstr "Opcións" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Chave relacional" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Mostrar columna de relación" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Mostrar os contidos binarios" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar o contido binario como HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Ocultar a transformación do navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Texto moi coñecido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Binario moi coñecido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Eliminouse a fileira" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Matar (kill)" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" "Pode non ser exacto. Consulte a [doc@faq3-11]pregunta frecuente 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "na consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" -"%s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" +"s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "A mostrar as fileiras" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "a consulta levou %01.4f segundos" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2723,8 +2719,8 @@ msgstr "a consulta levou %01.4f segundos" msgid "With selected:" msgstr "Cos marcados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2735,45 +2731,45 @@ msgstr "Cos marcados:" msgid "Check All" msgstr "Marcalos todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Crear unha vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operacións cos resultados da consulta" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Visualización previa da impresión" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Mostrar a gráfica" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Ver os datos GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Non se atopou a ligazón" @@ -2822,8 +2818,8 @@ msgstr "Produciuse un erro descoñecido ao enviar o ficheiro." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Produciuse un erro ao mover o ficheiro enviado. Consulte a " -"[doc@faq1-11]Pregunta frecuente 1.11[/doc]" +"Produciuse un erro ao mover o ficheiro enviado. Consulte a [doc@faq1-11]" +"Pregunta frecuente 1.11[/doc]" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -2854,38 +2850,38 @@ msgstr "Non se definiu ningún índice!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalidade" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Orde alfabética" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentario" @@ -2927,7 +2923,7 @@ msgstr "Vista" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estrutura" @@ -3072,15 +3068,15 @@ msgstr[1] "%1$d filas inseridas." msgid "Error while creating PDF:" msgstr "Produciuse un erro ao crear o PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Non foi posíbel gravar a táboa recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Táboas recentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Non hai táboas recentes" @@ -3255,8 +3251,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Produciuse un erro ao limpar as preferencias de IU da táboa (vexa " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Produciuse un erro ao limpar as preferencias de IU da táboa (vexa $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1603 #, php-format @@ -3326,7 +3322,7 @@ msgid "Maximum rows to plot" msgstr "Máximo de filas que aparecen na gráfica" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Visualizar valores alleos" @@ -3426,8 +3422,8 @@ msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -"Un enteiro de dous bytes; o intervalo asinado é desde " -"-9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen " +"Un enteiro de dous bytes; o intervalo asinado é desde -" +"9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen " "asinar é desde 0 até 18.446.744.073.709.551.615" #: libraries/Types.class.php:306 libraries/Types.class.php:713 @@ -3440,22 +3436,21 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Un número de vírgula flutuante pequeno; os valores permitidos son " -"-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até 3,402823466E" -"+38" +"Un número de vírgula flutuante pequeno; os valores permitidos son -" +"3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até 3,402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Un número de vírgula flutuante de precisión dobre; os valores permitidos " -"son-1,7976931348623157E+308 até -2,2250738585072014E-308, 0 " -"e2,2250738585072014E-308 até 1,7976931348623157E+308" +"Un número de vírgula flutuante de precisión dobre; os valores permitidos son-" +"1,7976931348623157E+308 até -2,2250738585072014E-308, 0 e2,2250738585072014E-" +"308 até 1,7976931348623157E+308" #: libraries/Types.class.php:312 msgid "" @@ -3501,9 +3496,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até " -"2038-01-09 03:14:07 UTC, almacenado como o número de segundos desde a época " -"(1970-01-01 00:00:00 UTC)" +"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até 2038-01-" +"09 03:14:07 UTC, almacenado como o número de segundos desde a época (1970-01-" +"01 00:00:00 UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:729 #, php-format @@ -3720,8 +3715,8 @@ msgid "" "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " "UTC; TIMESTAMP(6) can store microseconds" msgstr "" -"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até " -"«9999-12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos" +"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até «9999-" +"12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos" #: libraries/Types.class.php:735 msgid "" @@ -3740,7 +3735,7 @@ msgstr "Unha enumeración escollida da lista de valores definidos" msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3801,7 +3796,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Na liña" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Análise do desempeño" @@ -4281,8 +4276,8 @@ msgstr "Edición de columnas CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Empregue un editor amigábel para editar as consultas de SQL ([a@http://" "codemirror.net/]CodeMirror[/a]) con realce da sintaxe e números de liña" @@ -4693,9 +4688,8 @@ 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 "" -"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" +"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:149 msgid "Foreign key dropdown order" @@ -4837,9 +4831,8 @@ msgstr "Títulos de páxina" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Indique o texto da barra do título do navegador. Consulte a " "[doc@cfg_TitleTable]documentación[/doc] para coñecer as cadeas máximas que " @@ -4965,9 +4958,9 @@ msgid "" msgstr "" "Se desexa empregar o servizo do validador de SQL ha de te ren conta que " "[strong]todas as instrucións de SQL se almacenan de maneira anónima con " -"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer." -"com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. " -"Todos os dereitos reservados.[/em]" +"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]" +"Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. Todos " +"os dereitos reservados.[/em]" #: libraries/config/messages.inc.php:220 msgid "Startup" @@ -5661,8 +5654,8 @@ msgstr "Táboa de marcadores" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Déixeo en branco se non quere comentarios/tipos mime das columnas; suxírese: " "[kbd]pma__column_info[/kbd]" @@ -5698,8 +5691,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Un usuario especial de MySQL configurado con permisos limitados; hai máis " -"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/" -"controluser]wiki[/a]" +"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" +"[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5741,8 +5734,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Déixeo en branco se non quere empregar Designer; por omisión: " -"[kbd]pma__designer_coords[/kbd]" +"Déixeo en branco se non quere empregar Designer; por omisión: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5753,9 +5746,9 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Máis información no [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql." -"com/19588]Erros do MySQL[/a]" +"Máis información no [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do " +"MySQL[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5872,8 +5865,8 @@ msgid "" msgstr "" "Base de datos empregada para relacións, marcadores e funcionalidades PDF. " "Vexa [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] para a información " -"completa. Déixeo en branco se non lle interesan. Por omisión: " -"[kbd]phpmyadmin[/kbd]" +"completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin" +"[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5903,11 +5896,11 @@ msgstr "Táboa usada recentemente" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/" -"relation]ligazóns de relación[/a]; suxírese: [kbd]pma__relation[/kbd]" +"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]" +"ligazóns de relación[/a]; suxírese: [kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5923,8 +5916,8 @@ msgstr "Mostrar a orde SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Vexa os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de " "autenticación[/a] se quere un exemplo" @@ -5960,8 +5953,8 @@ 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]" +"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__table_coords" +"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6043,8 +6036,8 @@ msgstr "Instrucións que seguir" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Déixeo en branco se non quere un soporte de seguimento das consultas SQL, " "valor suxerido: [kbd]pma_tracking[/kbd]" @@ -6067,8 +6060,8 @@ msgstr "Crear versions automaticamente" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Déixeo en branco se non quere almacenar as preferencias na base de datos; " "suxerido: [kbd]pma__userconfig[/kbd]" @@ -6199,8 +6192,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6286,8 +6279,8 @@ msgstr "" "Se dispón dun nome de usuario personalizado, indíqueo aquí (por omisión é " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nome de usuario" @@ -6354,8 +6347,8 @@ msgid "" msgstr "" "Escriba os proxies como [kbd]IP: cabezallo HTTP de confianza[/kbd]. O " "exemplo seguinte especifica que o phpMyAdmin debería confiar nun cabezallo " -"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]" +"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:512 msgid "List of trusted proxies for IP allow/deny" @@ -6719,7 +6712,7 @@ msgstr "Base(s) de datos:" msgid "Table(s):" msgstr "Táboa(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Fila(s):" @@ -6768,8 +6761,8 @@ msgstr ", @TABLE@ será o nome da táboa" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "empregar cadeas de formato de tempo. Produciranse transformacións en " @@ -7330,8 +7323,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Pódese atopar documentación e información adicional sobre PBXT na %sPáxina " "de PrimeBase XT %s." @@ -7349,7 +7342,7 @@ msgid "No data found for GIS visualization." msgstr "Non se atoparon datos para a visualización de GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." @@ -7470,11 +7463,11 @@ msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha frecha para moverse a calquera sitio" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -7525,7 +7518,7 @@ msgstr "Engadir un prefixo á táboa" msgid "Add prefix" msgstr "Engadir un prefixo" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Está realmente seguro de executar a seguinte petición?" @@ -7770,8 +7763,8 @@ msgstr "O nome de clase «%1$s» é incorrecto; emprégase o predefinido «Nodo #, php-format msgid "Could not include class \"%1$s\", file \"%2$s\" not found" msgstr "" -"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro " -"«%2$s»" +"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro «%2" +"$s»" #: libraries/navigation/Nodes/Node_Column_Container.class.php:26 #: libraries/sql_query_form.lib.php:281 @@ -7856,17 +7849,17 @@ msgid "Drop the database (DROP)" msgstr "Eliminar a base de datos (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Só a estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estrutura e datos" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Só os datos" @@ -8029,8 +8022,8 @@ msgstr "Reciba a benvida a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -8293,7 +8286,7 @@ msgstr "Pór os nomes das columnas na primeira fila" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8301,7 +8294,7 @@ msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8319,7 +8312,7 @@ msgstr "Versión do PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8397,9 +8390,9 @@ msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -"Encerrar os nomes das táboas e das columnas entre aspas invertidas " -"(Protexe os nomes das columnas e as táboas formadas con caracteres " -"especiais ou palabras chave)" +"Encerrar os nomes das táboas e das columnas entre aspas invertidas " +"(Protexe os nomes das columnas e as táboas formadas con caracteres especiais " +"ou palabras chave)" #: libraries/plugins/export/ExportSql.class.php:295 msgid "Data creation options" @@ -9163,8 +9156,7 @@ msgid "" msgstr "" "Está a empregar a extensión obsoleta de PHP «mysql», que non pode xestionar " "consultas múltiples. [strong]A execución de varias rutinas almacenadas pode " -"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar " -"problemas." +"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar problemas." #: libraries/rte/rte_routines.lib.php:281 #: libraries/rte/rte_routines.lib.php:1118 @@ -9467,7 +9459,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9632,7 +9624,7 @@ msgid "Library" msgstr "Biblioteca" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versión" @@ -10092,8 +10084,8 @@ msgstr "Vista xeral dos usuarios" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " @@ -10108,63 +10100,289 @@ msgstr "Non se atopou o usuario escollido na táboa de privilexios." msgid "You have added a new user." msgstr "Engadiu un usuario novo." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segundo" +msgstr[1] "%d segundos" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estatísticas de rexistro" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Intervalo temporal escollido:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Obter só as instrucións SELECT, INSERT, UPDATE e DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Retirar os datos variábeis das instrucións tipo INSERT para agrupar mellor" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" +"Escoller o rexistro a partir do que se desexa que se xeren as estatísticas." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Os resultados están agrupados polo texto da consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizador de consultas" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrucións de monitorización" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"O Monitor do phpMyAdmin pode axudar a optimizar a configuración do servidor " +"e vixiar as consultas que leven moito tempo. Para isto último hai que " +"configurar log_output en «TABLE» e ter activado slow_query_log ou " +"general_log. Lembre, porén, que general_log produce moitos datos e " +"incrementa a carga do servidor nun 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Infortunadamente, o servidor da base de datos non admite rexistrar nunha " +"táboa, que é un requisito para analizar os rexistros da base de datos co " +"phpMyAdmin. O rexistro en táboas é posíbel desde MySQL 5.1.6 e posteriores. " +"Porén, pode tamén empregar a funcionalidade de gráficas do servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Uso do monitor:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"O navegador anova todas as gráficas que se mostran en intervalos regulares. " +"pode engadir gráficas e cambiar a taxa de anovación en «Configuración» ou " +"eliminar as gráficas que empreguen a icona da engrenaxe de cada gráfica " +"respectiva." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Para mostrar consultas a partir dos rexistros, escolla a duración de tempo " +"relevante de calquera gráfica e manteña premido o botón esquerdo do rato " +"mentres arrastra sobre a gráfica. Coa confirmación cárgase unha táboa de " +"consultas agrupadas na que se pode premer calquera instrución SELECT que " +"apareza para analizala máis polo miúdo." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Por favor note:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activar general_log pode incrementar a carga do servidor entre un 5% e un " +"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " +"tarefa que require un traballo intensivo, polo que se recomenda escoller só " +"un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " +"se requira máis esa vixilancia." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Engadir unha gráfica" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gráfica predefinida" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variábel/eis de estado" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Escoller unha serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Vixilancias frecuentes" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ou escriba o nome da variábel:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Mostrar como valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar un divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Engadir a unidade aos valores dos datos" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Engadir esta serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Limpar esta series" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series na gráfica:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Iniciar o vixilante" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrucións/Configuración" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Rematou a redistribución/edición das gráficas" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Activar o realce" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Taxa de anovación" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Columnas da gráfica" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Ordenación das gráficas" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"A distribución das gráficas almacénase no almacenamento local do navegador. " +"Pode resultar útil exportala se a configuración é complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Restabelecer o predeterminado" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado de SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Xerado por" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Tamaño de aumento do ficheiro de datos" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Outro" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Inicio" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Tempo total:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Fechar" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Marcar esta busca de SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiqueta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permitir que calquera usuario poida acceder a este marcador" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10185,10 +10403,6 @@ msgstr "Limpar" msgid "Bookmark this SQL query:" msgstr "Marcar esta busca de SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permitir que calquera usuario poida acceder a este marcador" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Substituír un marcador xa existente que teña o mesmo nome" @@ -10329,7 +10543,7 @@ msgstr "Exceso na comprobación" msgid "Sort" msgstr "Ordenar" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nada" @@ -10485,7 +10699,7 @@ msgstr "Efectivo" msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Hai un erro na consulta" @@ -10643,7 +10857,7 @@ msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Produciuse un erro fatal: Só é posíbel acceder á navegación mediante AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" @@ -10699,7 +10913,7 @@ msgstr "Alternar pequeno/grande" msgid "Toggle relation lines" msgstr "Conmutar as liñas de relación" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema de PDF" @@ -10759,43 +10973,43 @@ msgstr "Agregar" msgid "Active options" msgstr "Opcións activas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Creouse a páxina" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Fallou a creación da páxina" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Páxina" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar desde a páxina escollida" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportar á páxina escollida" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crear unha páxina e exportar a ela" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nome da nova páxina: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Exportar/Importar a escala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomendado" @@ -10825,7 +11039,7 @@ msgstr "Engadiuse a relación interna" msgid "Relation deleted" msgstr "Eliminouse a relación" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Produciuse un erro ao gardar as coordenadas para Deseñador." @@ -10880,8 +11094,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o " -"%sScript de configuración%s." +"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %" +"sScript de configuración%s." #: prefs_manage.php:308 msgid "Save to browser's storage" @@ -11277,217 +11491,6 @@ msgstr "" "vez, observar ou someter a base de datos a probas e desfacer o cambio se non " "se apreciaron melloras medíbeis." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrucións de monitorización" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"O Monitor do phpMyAdmin pode axudar a optimizar a configuración do servidor " -"e vixiar as consultas que leven moito tempo. Para isto último hai que " -"configurar log_output en «TABLE» e ter activado slow_query_log ou " -"general_log. Lembre, porén, que general_log produce moitos datos e " -"incrementa a carga do servidor nun 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Infortunadamente, o servidor da base de datos non admite rexistrar nunha " -"táboa, que é un requisito para analizar os rexistros da base de datos co " -"phpMyAdmin. O rexistro en táboas é posíbel desde MySQL 5.1.6 e posteriores. " -"Porén, pode tamén empregar a funcionalidade de gráficas do servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Uso do monitor:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"O navegador anova todas as gráficas que se mostran en intervalos regulares. " -"pode engadir gráficas e cambiar a taxa de anovación en «Configuración» ou " -"eliminar as gráficas que empreguen a icona da engrenaxe de cada gráfica " -"respectiva." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Para mostrar consultas a partir dos rexistros, escolla a duración de tempo " -"relevante de calquera gráfica e manteña premido o botón esquerdo do rato " -"mentres arrastra sobre a gráfica. Coa confirmación cárgase unha táboa de " -"consultas agrupadas na que se pode premer calquera instrución SELECT que " -"apareza para analizala máis polo miúdo." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Por favor note:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activar general_log pode incrementar a carga do servidor entre un 5% e un " -"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " -"tarefa que require un traballo intensivo, polo que se recomenda escoller só " -"un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " -"se requira máis esa vixilancia." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Engadir unha gráfica" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Gráfica predefinida" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variábel/eis de estado" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Escoller unha serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Vixilancias frecuentes" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ou escriba o nome da variábel:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Mostrar como valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar un divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Engadir a unidade aos valores dos datos" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Engadir esta serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Limpar esta series" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series na gráfica:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estatísticas de rexistro" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Intervalo temporal escollido:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Obter só as instrucións SELECT, INSERT, UPDATE e DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Retirar os datos variábeis das instrucións tipo INSERT para agrupar mellor" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"Escoller o rexistro a partir do que se desexa que se xeren as estatísticas." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Os resultados están agrupados polo texto da consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizador de consultas" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segundo" -msgstr[1] "%d segundos" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minutos" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Iniciar o vixilante" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrucións/Configuración" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Rematou a redistribución/edición das gráficas" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Activar o realce" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Taxa de anovación" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Columnas da gráfica" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Ordenación das gráficas" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"A distribución das gráficas almacénase no almacenamento local do navegador. " -"Pode resultar útil exportala se a configuración é complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Restabelecer o predeterminado" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11763,9 +11766,9 @@ msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece " -"cando unha consulta vai examinar unha porción grande dunha táboa mais en " -"orde aleatoria." +"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece cando " +"unha consulta vai examinar unha porción grande dunha táboa mais en orde " +"aleatoria." #: server_status_variables.php:466 msgid "" @@ -12539,8 +12542,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se pensa que é preciso, empregue opcións de protección adicionais - " -"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " +"Se pensa que é preciso, empregue opcións de protección adicionais - %" +"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " "protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao " "que estean ligados miles de usuarios, incluído vostede." @@ -12550,8 +12553,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Configurou o tipo de configuración [kbd]config[/kbd] e incluíu o nome de " "usuario e o contrasinal para o rexistro automático, o que non é unha opción " @@ -12603,24 +12606,24 @@ msgstr "" msgid "Wrong data" msgstr "Os datos son incorrectos" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "A empregar o marcador «%s» como consulta de navegación por omisión." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Non se creou o marcador" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12633,21 +12636,11 @@ msgstr "" "relacionadas coa edición da grecha, caixa de selección, editar, copiar e " "eliminar ligazóns poden non funcionar despois de gravar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa «%s»" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Marcar esta busca de SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiqueta" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Non hai datos que mostrar" @@ -12869,31 +12862,31 @@ msgstr "Escolla a columna que desexe mostrar" msgid "No column selected." msgstr "Non hai ningunha fileira seleccionada" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimento da táboa «%s»" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Creouse a versión %1$s; activouse o seguemento de %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivouse o seguemento de %1$s na versión %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Activouse o seguemento de %1$s na versión %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instrucións SQL executadas." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12901,113 +12894,113 @@ msgstr "" "Pódese executar o envorcado creando e empregando unha base de datos " "temporal. Asegúrese de que goza dos privilexios para facelo." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Marque estas dúas liñas como comentario se non as precisa." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instrucións de SQL exportadas. Copie o envorcado ou execúteo." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantánea da versión %s (código SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "A definición dos datos de seguimento foi eliminada con éxito" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Eliminouse satisfactoriamente o seguimento da manipulación de datos" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Instrucións de seguimento" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s con datas de %2$s to %3$s polo usuario %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Eliminar do informe a fila de datos de seguimento" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Non hai datos" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instrución de definición de datos" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instrución de manipulación de datos" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Envorcado de SQL (descarga do ficheiro)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Envorcado de SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Esta opción substitúe a táboa e os datos que contén." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Execución de SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostrar as versións" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar o seguemento para %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desactivar agora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activar o seguemento para %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activar agora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Seguir estas instrucións de definición de datos:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Seguir estas instrucións de manipulación de datos:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crear unha versión" @@ -13118,8 +13111,8 @@ msgstr "" #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" -"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s" -"%%." +"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%" +"%." #: libraries/advisory_rules.txt:70 msgid "Slow query rate" @@ -13340,8 +13333,8 @@ msgid "" msgstr "" "Sábese que a caché de consultas mellora moito o desempeño se se configura " "axeitadamente. Actívea configurando {query_cache_size} a un valor de MiB de " -"dous díxitos e configurando {query_cache_type) como «ON». Nota: Se " -"vai empregar memcached, ignore esta recomendación." +"dous díxitos e configurando {query_cache_type) como «ON». Nota: Se vai " +"empregar memcached, ignore esta recomendación." #: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -13419,8 +13412,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "A relación actual da memoria da caché de consultas e o tamaño total da caché " "de consultas é de %s%%. Debería superar o 80%%" @@ -13579,8 +13572,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todos os ordenamentos causan táboas temporais; este valor debería " "estar por debaixo do 10%%." @@ -14372,6 +14365,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definido como 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeceiras cada %s filas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14664,9 +14660,9 @@ msgstr "concurrent_insert está definido como 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da " #~ "táboa só se emprega para partir/aniñar as táboas de acordo coa directiva " diff --git a/po/he.po b/po/he.po index 73f150df1e..2741be6020 100644 --- a/po/he.po +++ b/po/he.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-03 10:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hebrew \n" -"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: he\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "חיפוש:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "חיפוש:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "ביצוע" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "שם מפתח" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "תיאור" @@ -105,7 +105,7 @@ msgid "" msgstr "" "הקובץ %s אינו זמין במערכת זו, נא לבקר בכתובת www.phpmyadmin.net למידע נוסף." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "מסד הנתונים %1$s נוצר." @@ -133,7 +133,7 @@ msgstr "הערות לטבלה:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "עמודה" @@ -156,7 +156,7 @@ msgstr "עמודה" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "סוג" @@ -173,7 +173,7 @@ msgstr "סוג" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "ריק" @@ -188,7 +188,7 @@ msgstr "ריק" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "בררת מחדל" @@ -230,9 +230,9 @@ msgstr "הערות" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "לא" @@ -257,9 +257,9 @@ msgstr "לא" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "כן" @@ -309,7 +309,7 @@ msgstr "אחסון התצורה של phpMyAdmin הופסקה. כדי לגלות #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "טבלה" @@ -385,7 +385,7 @@ msgstr "טבלאות במעקב" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "מסד נתונים" @@ -393,17 +393,17 @@ msgstr "מסד נתונים" msgid "Last version" msgstr "הגרסה האחרונה" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "מועד היצירה" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "עודכנה" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "מצב" @@ -416,7 +416,7 @@ msgstr "מצב" msgid "Action" msgstr "פעולה" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "הצגה" @@ -432,11 +432,11 @@ msgstr "מחיקת נתוני המעקב לטבלה זו" msgid "Drop" msgstr "השמטה" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "פעיל" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "לא פעיל" @@ -444,11 +444,11 @@ msgstr "לא פעיל" msgid "Versions" msgstr "גרסאות" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "דוח המעקב" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "העתק של המבנה" @@ -594,8 +594,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "כפי הנראה ניסית להעלות קובץ גדול מדי. נא לפנות ל%s תיעוד %s למצוא דרך לעקיפת " "מגבלה זו." @@ -641,7 +641,7 @@ msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ל msgid "Could not load import plugins, please check your installation!" msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "הסימנייה %s נוצרה" @@ -667,7 +667,7 @@ msgstr "" "עם זאת, בהרצה האחרונה לא נותחו נתונים כלל, לרוב משמעות הדבר היא ש־phpMyAdmin " "לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -872,7 +872,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מנוטרלות." @@ -881,7 +881,7 @@ msgstr "הוראות \"DROP DATABASE\" מנוטרלות." msgid "Do you really want to execute \"%s\"?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "פעולה זו עלולה להשמיד מסד נתונים שלם!" @@ -965,8 +965,8 @@ msgstr "ההרשאות נטענו מחדש" msgid "Removing Selected Users" msgstr "הסרת המשתמש הנבחרים" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "סגירה" @@ -1096,13 +1096,13 @@ msgstr "Bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1143,7 +1143,7 @@ msgid "Traffic" msgstr "תעבורה" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1167,13 +1167,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "ללא" @@ -1273,7 +1274,7 @@ msgstr "תכונות קשר כלליות" msgid "Current settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1362,7 +1363,7 @@ msgstr "הסברת SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "זמן" @@ -1473,7 +1474,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1537,7 +1538,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "מקומי" @@ -1719,7 +1720,7 @@ msgstr "שאילתת SQL" msgid "Show query box" msgstr "שאילתת SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1732,7 +1733,7 @@ msgstr "עריכה" msgid "No rows selected" msgstr "לא נבחרו שורות" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1824,7 +1825,7 @@ msgstr "תוכן עניניים" msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "העתקה" @@ -1840,7 +1841,7 @@ msgstr "מחרוזת שורה" msgid "Polygon" msgstr "מצולע" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "פני השטח" @@ -2385,31 +2386,31 @@ msgstr "לשעה" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "עולה" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2565,14 +2566,14 @@ msgstr "עיון" msgid "Delete the matches for the %s table?" msgstr "האם למחוק את התוצאות עבור הטבלה %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "מחיקה" @@ -2676,17 +2677,11 @@ msgstr "מאוזן (headers מסובבים)" msgid "vertical" msgstr "ניצב" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "הרצת שאילתה מועדפת" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2714,96 +2709,96 @@ msgstr "" msgid "Options" msgstr "פעולות" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "טקסטים חלקיים" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "טקסטים מלאים" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "תצוגת יחסים" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy msgid "Relational display column" msgstr "תצוגת יחסים" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy msgid "Hide browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "יכול להיות הערכה. ראה [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "בשאילתה" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "סה\"כ" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2812,8 +2807,8 @@ msgstr "שאילתה לקחה %01.4f שניות" msgid "With selected:" msgstr "עם הנבחרים:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2824,48 +2819,48 @@ msgstr "עם הנבחרים:" msgid "Check All" msgstr "סימון הכול" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "יצוא" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "תצוגת הדפסה" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "קישור לא נמצא" @@ -2943,38 +2938,38 @@ msgstr "אין אינדקסים מוגדרים!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "אינדקסים" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "מספור" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "איסוף" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "הערות" @@ -3015,7 +3010,7 @@ msgstr "תצוגה" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "מבנה" @@ -3165,16 +3160,16 @@ msgstr[1] "לא נבחרו שורות" msgid "Error while creating PDF:" msgstr "מאפשר מחיקת מידע." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "אין טבלאות" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3424,7 +3419,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3526,14 +3521,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3777,7 +3772,7 @@ msgstr "" msgid "Max: %s%s" msgstr "מירבי: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3841,7 +3836,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "מנועים" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4318,8 +4313,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4889,9 +4884,8 @@ msgstr "מספר דף:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5661,8 +5655,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5868,8 +5862,8 @@ msgstr "ניתוח טבלה" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5887,8 +5881,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5992,8 +5986,8 @@ msgstr "משפטים" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6013,8 +6007,8 @@ msgstr "גרסת שרת" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6209,8 +6203,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "שם משתמש:" @@ -6628,7 +6622,7 @@ msgstr "מאגרי נתונים" msgid "Table(s):" msgstr "טבלאות" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6684,8 +6678,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7197,8 +7191,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7216,7 +7210,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." @@ -7337,11 +7331,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7398,7 +7392,7 @@ msgstr "הוספת שדה חדש" msgid "Add prefix" msgstr "הוספת שדה חדש" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7737,17 +7731,17 @@ msgid "Drop the database (DROP)" msgstr "השמטת מסד הנתונים (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "מבנה בלבד" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "מבנה ונתונים" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "נתונים בלבד" @@ -7920,8 +7914,8 @@ msgstr "ברוך הבא אל %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8202,7 +8196,7 @@ msgstr "שמות עמודה" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8210,7 +8204,7 @@ msgstr "מארח" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8228,7 +8222,7 @@ msgstr "גרסת PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9347,7 +9341,7 @@ msgstr "תכונות" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "תוספת" @@ -9522,7 +9516,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Persian" @@ -9987,8 +9981,8 @@ msgstr "סקירת משתמשים" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " @@ -10002,61 +9996,276 @@ msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." msgid "You have added a new user." msgstr "משתמש חדש נוסף." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "לשנייה" +msgstr[1] "לשנייה" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "בשימוש" +msgstr[1] "בשימוש" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "סטטיסטיקת שורה" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "בחירת הכל" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "סוג שאילתה" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "הוספת שדה חדש" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "שינוי שם מאגר נתונים אל" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "בחירת טבלאות" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "הוספת משתמש חדש" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "שאילתת SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "שבת" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "רענון" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "הוספת/מחיקת עמודות שדה" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "תוצאת SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "נוצר ע\"י" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "קבצי נתונים" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "אחר" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "מצב" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "סה\"כ" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "זמן" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "סגירה" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "זמן" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "הכנס שאילתת SQL זאת למועדפים" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "תווית" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10078,10 +10287,6 @@ msgstr "לוח שנה" msgid "Bookmark this SQL query:" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10207,7 +10412,7 @@ msgstr "בדיקת טבלאות בעלות תקורה" msgid "Sort" msgstr "סידור" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10379,7 +10584,7 @@ msgstr "יעיל" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10548,7 +10753,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "שינויים נשמרו" @@ -10606,7 +10811,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "סינית מסורתית" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10680,52 +10885,52 @@ msgstr "יצירה" msgid "Active options" msgstr "אפשרויות טבלה" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "טבלה %s נמחקה" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "דפים" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "קבצי ייבוא" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "לא נבחרו שורות" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "יצירת אינדקס חדש" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "שם משתמש" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "לא נבחרו שורות" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10755,7 +10960,7 @@ msgstr "יחסים פנימיים" msgid "Relation deleted" msgstr "תצוגת יחסים" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11177,206 +11382,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "הוספת שדה חדש" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "שינוי שם מאגר נתונים אל" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "בחירת טבלאות" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "הוספת משתמש חדש" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "שאילתת SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "סטטיסטיקת שורה" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "בחירת הכל" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "סוג שאילתה" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "לשנייה" -msgstr[1] "לשנייה" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "בשימוש" -msgstr[1] "בשימוש" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "שבת" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "רענון" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "הוספת/מחיקת עמודות שדה" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12271,8 +12276,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12315,49 +12320,39 @@ msgstr "" msgid "Wrong data" msgstr "אין מאגרי נתונים" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "הסימנייה %s נוצרה" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "הכנס שאילתת SQL זאת למועדפים" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "תווית" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12601,146 +12596,146 @@ msgstr "בחירת שדה להצגה" msgid "No column selected." msgstr "לא נבחרו שורות" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "אין מאגרי נתונים" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "נתונים" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "גרסת שרת" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "גרסת שרת" @@ -13115,8 +13110,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13245,8 +13240,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13907,6 +13902,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "הרצת שאילתה מועדפת" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/hi.po b/po/hi.po index 85c2b97598..a118afbccd 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-09 12:34+0200\n" "Last-Translator: Ghanshyam Bagul \n" "Language-Team: Hindi \n" -"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "ढूंढें" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "ढूंढें" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "जाएँ" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "मुख्यनाम" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "वर्णन" @@ -107,7 +107,7 @@ msgstr "" "ये %s फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए www.phpmyadmin.net " "वेबसाईट पर जाएँ।" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." @@ -137,7 +137,7 @@ msgstr "टेबल टिप्पणि:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "स्तम्भ" @@ -160,7 +160,7 @@ msgstr "स्तम्भ" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "प्रकार/किस्म" @@ -177,7 +177,7 @@ msgstr "प्रकार/किस्म" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "शून्य" @@ -192,7 +192,7 @@ msgstr "शून्य" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "तयशुदा" @@ -234,9 +234,9 @@ msgstr "टिप्पणी" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "नहीं" @@ -261,9 +261,9 @@ msgstr "नहीं" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "हाँ" @@ -305,8 +305,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " -"%sयहाँ%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" +"sयहाँ%s पर क्लिक करें." #: db_printview.php:47 db_tracking.php:79 db_tracking.php:198 #: libraries/Menu.class.php:190 libraries/config/messages.inc.php:510 @@ -316,7 +316,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "टेबल" @@ -398,7 +398,7 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "डाटाबेस" @@ -406,17 +406,17 @@ msgstr "डाटाबेस" msgid "Last version" msgstr "पिछला संस्करण" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "बनाया" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "अद्यतन" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "स्थिति" @@ -429,7 +429,7 @@ msgstr "स्थिति" msgid "Action" msgstr "कार्य" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "दिखाओ" @@ -445,11 +445,11 @@ msgstr "इस टेबल के लिए ट्रैकिंग डेट msgid "Drop" msgstr "रद्द" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "सक्रिय" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "निष्क्रिय" @@ -457,11 +457,11 @@ msgstr "निष्क्रिय" msgid "Versions" msgstr "संस्करण" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "संरचना क्षणचित्र" @@ -615,11 +615,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके " -"%sdocumentation%s पढ़ें." +"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %" +"sdocumentation%s पढ़ें." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -663,7 +663,7 @@ msgstr "अक्षर सेट रूपांतरण पुस्तका msgid "Could not load import plugins, please check your installation!" msgstr "आयात प्लगइन्स नहीं लोड किये जा सके। कृपया अपनी संस्थापना जाँचें!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" @@ -688,7 +688,7 @@ msgstr "" "पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय " "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -893,7 +893,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." @@ -902,7 +902,7 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं." msgid "Do you really want to execute \"%s\"?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डॅटाबेस मिटाने जा रहे हैं!" @@ -991,8 +991,8 @@ msgstr "विशेषाधिकारों को पुनः लोड msgid "Removing Selected Users" msgstr "चयनित प्रयोक्ताओं को हटायें" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "बंद" @@ -1118,13 +1118,13 @@ msgstr "बिट्स" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "किलोबाइट" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "मेगाबाइट" @@ -1163,7 +1163,7 @@ msgid "Traffic" msgstr "व्यस्तता" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "सेटिंग्स" @@ -1183,13 +1183,14 @@ msgstr "चार्ट को जाली (grid) पर लगाएँ" msgid "Please add at least one variable to the series" msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "कुछ नहीं" @@ -1293,7 +1294,7 @@ msgstr "सेटिंग्स बदलें" msgid "Current settings" msgstr "वर्तमान सेटिंग्स" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "चार्ट शीर्षक" @@ -1383,7 +1384,7 @@ msgstr "परिणाम को समझाएँ" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "समय" @@ -1481,7 +1482,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "आयात करें" @@ -1538,7 +1539,7 @@ msgid "Cancel" msgstr "रद्द" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "लोड हो रहा है" @@ -1692,7 +1693,7 @@ msgstr "क्वॅरी बॉक्स छिपाएँ" msgid "Show query box" msgstr "क्वॅरी बॉक्स दिखाएँ" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1705,7 +1706,7 @@ msgstr "सम्पादन" msgid "No rows selected" msgstr "कोई पंक्ति चयनित नहीं" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1787,7 +1788,7 @@ msgstr "डॅटा बिन्दु सामग्री" msgid "Ignore" msgstr "उपेक्षा करें" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "प्रतिलिपि करें" @@ -1805,7 +1806,7 @@ msgstr "लाईन समाप्त होता है" msgid "Polygon" msgstr "बहुभुज" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "ज्यामिति" @@ -2293,31 +2294,31 @@ msgstr "प्रति घंटा" msgid "per day" msgstr "प्रतिदिन" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "फ़ॉन्ट का आकार" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "आरोही" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2473,14 +2474,14 @@ msgstr "ब्राउज़" msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "मिटाएँ" @@ -2583,16 +2584,11 @@ msgstr "" msgid "vertical" msgstr "खडा" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "कुंजी सॉर्ट" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2619,91 +2615,91 @@ msgstr "कुंजी सॉर्ट" msgid "Options" msgstr "विकल्प" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "आंशिक पाठ" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "पूर्ण पाठ" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "कुंजी संबंधपरक" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "संबंधपरक प्रदर्शन स्तंभ" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "द्विआधारी सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/doc] देखें" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "कुल" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2712,8 +2708,8 @@ msgstr "क्वरी को %01.4f सेकेंड का समय लग msgid "With selected:" msgstr "चुने हुओं को:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2724,47 +2720,47 @@ msgstr "चुने हुओं को:" msgid "Check All" msgstr "सभी को चेक करें" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "निर्यात" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "दृश्य बनाइये" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "छपाई द्रश्य" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "लिंक नहीं मिला" @@ -2809,8 +2805,8 @@ msgstr "फ़ाइल अपलोड करने में अज्ञा #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल " -"1,11[/doc] देखें" +"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल 1,11" +"[/doc] देखें" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -2843,38 +2839,38 @@ msgstr "परिभाषित सूचकांक नहीं पाए #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "सूचकांक" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "जमा" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "प्रमुखता" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "क्रम में करें" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "टिप्पणी" @@ -2914,7 +2910,7 @@ msgstr "दृश्य" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "संरचना" @@ -3063,19 +3059,19 @@ msgstr[1] "बहुवचन %1$d पंक्तिया डाली।" msgid "Error while creating PDF:" msgstr "डाटा पढने की अनुमति देता है" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not save configuration" msgid "Could not save recent table" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "टेबल गणना" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3327,7 +3323,7 @@ msgid "Maximum rows to plot" msgstr "प्रदर्शित रो की अधिकतम संख्या" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें" @@ -3430,14 +3426,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3683,7 +3679,7 @@ msgstr "" msgid "Max: %s%s" msgstr "अधिकतम: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3744,7 +3740,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "इनलाइन" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "रूपरेखा" @@ -4227,8 +4223,8 @@ msgstr "CHAR कॉलम संपादन" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4775,9 +4771,8 @@ msgstr "पृष्ठ शीर्षक" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "निर्दिष्ट ब्राउज़र की शीर्षक पट्टी पाठ. [doc@cfg_TitleTable]documentation[/doc] " "जादू स्ट्रिंग को विशेष मान पाने के लिए इस्तेमाल किया जा सकता है." @@ -4965,8 +4960,8 @@ 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]" +"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/Gzip]" +"gzip[/a]" #: libraries/config/messages.inc.php:235 msgid "GZip" @@ -5593,8 +5588,8 @@ msgstr "बुकमार्क टेबल" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" #| "kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" @@ -5703,8 +5698,8 @@ msgstr "डेटाबेस छिपाना" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5820,8 +5815,8 @@ msgstr "याद यूसर नाम" #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" @@ -5839,8 +5834,8 @@ msgstr "SHOW DATABASES आदेश" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5953,11 +5948,11 @@ msgstr "बयान ट्रैक करने के लिए" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/" "kbd]" @@ -5981,8 +5976,8 @@ msgstr "स्वतः संस्करण बनाना" #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" @@ -6180,8 +6175,8 @@ msgid "" msgstr "" "अगर आप एक कस्टम यूसर हैं,तो यहाँ निर्दिष्ट करें, (defaults to [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "यूसर नाम" @@ -6589,7 +6584,7 @@ msgstr "डाटाबेस(s)" msgid "Table(s):" msgstr "टेबल(s) :" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "रोयाँ" @@ -6638,8 +6633,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7138,8 +7133,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7159,7 +7154,7 @@ msgid "No data found for GIS visualization." msgstr "चार्ट के लिए कोई डेटा नहीं मिला" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" @@ -7286,11 +7281,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -7347,7 +7342,7 @@ msgstr "अनुक्रमणिका जोड़" msgid "Add prefix" msgstr "अनुक्रमणिका जोड़" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7686,17 +7681,17 @@ msgid "Drop the database (DROP)" msgstr "डेटाबेस को ड्रप करे" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "केवल संरचना" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "संरचना और डाटा" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "केवल डाटा" @@ -7859,11 +7854,11 @@ msgstr "%s मे स्वागत है" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" -"%2$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" +"$s का उपयोग करें." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8135,7 +8130,7 @@ msgstr "काँलम नाम प्रथम रो में" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8143,7 +8138,7 @@ msgstr "होस्ट" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8161,7 +8156,7 @@ msgstr "संस्करण" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9313,7 +9308,7 @@ msgstr "विशेषता" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "अतिरिक्त" @@ -9486,7 +9481,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "संस्करण" @@ -9944,8 +9939,8 @@ msgstr "यूसर सिंहावलोकन" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9956,62 +9951,286 @@ msgstr "" msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "सेकंड" +msgstr[1] "सेकंड" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "मिनट" +msgstr[1] "मिनट" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "आँकड़े दिखाएँ" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "पेज चुनिये" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "क्वरी प्रकार" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add index" +msgid "Add chart" +msgstr "अनुक्रमणिका जोड़" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "डेटाबेस को हटा दे" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "टेबल चुनिये" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "अवैध टेबल नाम" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "एक नया सर्वर जोडें" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL क्वरी" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Textarea rows" +msgid "Start Monitor" +msgstr "क्षेत्र रोयाँ" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "उजागर सक्षम" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "ताज़ा करना" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Textarea columns" +msgid "Chart columns" +msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "मूलभूत मान को बहाल" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQLपरिणाम" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "द्वारा उत्पन्न" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "डेटा फ़ाइलें" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "अन्य" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "स्टार्टअप" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "कुल समय:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "समय" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "बंद" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "समय" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "इस SQL-क्वरी को बुकमार्क कीजिये" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "लेबल" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10032,10 +10251,6 @@ msgstr "स्पष्ट" msgid "Bookmark this SQL query:" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें" @@ -10161,7 +10376,7 @@ msgstr "ओवर्हेअद वाली तालुकाओं को msgid "Sort" msgstr "सॉर्ट" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "कोई नहीं" @@ -10328,7 +10543,7 @@ msgstr "वास्तविक" msgid "Table %1$s has been altered successfully" msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -10481,7 +10696,7 @@ msgstr "ज़िप संग्रह में त्रुटि" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" @@ -10539,7 +10754,7 @@ msgstr "टोग्ल छोटे/बड़े" msgid "Toggle relation lines" msgstr "संबंध चयन करने के लिए क्लिक करें :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10615,47 +10830,47 @@ msgstr "कुल" msgid "Active options" msgstr "सक्रिय विकल्प" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "पेज" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "चयनित पेज से आयात" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "चयनित पेज को निर्यात" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "एक पेज बनाएँ और इसमें निर्यात करिएँ" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "नया पेज के नाम" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "निर्यात/आयात पैमाने पर" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "सिफारिश" @@ -10685,7 +10900,7 @@ msgstr "आंतरिक संबंध जोड़ा." msgid "Relation deleted" msgstr "रिश्ते को नष्ट कर दिया" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "डिजाइनर के लिए निर्देशांक बचाने में त्रुटि आ रही है" @@ -11103,215 +11318,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add index" -msgid "Add chart" -msgstr "अनुक्रमणिका जोड़" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "डेटाबेस को हटा दे" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "टेबल चुनिये" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "अवैध टेबल नाम" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "एक नया सर्वर जोडें" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL क्वरी" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "आँकड़े दिखाएँ" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "पेज चुनिये" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "क्वरी प्रकार" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "सेकंड" -msgstr[1] "सेकंड" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "मिनट" -msgstr[1] "मिनट" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start Monitor" -msgstr "क्षेत्र रोयाँ" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "उजागर सक्षम" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "ताज़ा करना" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Textarea columns" -msgid "Chart columns" -msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "मूलभूत मान को बहाल" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12209,8 +12215,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12255,26 +12261,26 @@ msgstr "" msgid "Wrong data" msgstr "कोइ डाटाबेस नहिं" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "बुकमार्क %s बनाया" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12286,21 +12292,11 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "इस SQL-क्वरी को बुकमार्क कीजिये" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "लेबल" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12552,34 +12548,34 @@ msgstr "प्रदर्शित करने के लिए काँल msgid "No column selected." msgstr "कोई पंक्ति चयनित नहीं" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "टेबल `%s` की ट्रैकिंग रिपोर्ट" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "संस्करण %s बन चूका है, ट्रैकिंग %s.%s के लिए सक्रिय" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL कथन चलाएँ" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12587,125 +12583,125 @@ msgstr "" "आप दुम्प को क्रियान्वित कर सकते हैं एक अस्थायी डेटाबेस का उपयोग करें. सुनिश्चित करें कि आप " "ऐसा करने के लिए विशेषाधिकार हैं कृपया." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "इन दो लाइन को टिप्पणी बना दें अगर आपको इनकी आवश्यकता नहीं है" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL कथन निर्यात. कृपया दुम्प को या तो कॉपी करें य फिर क्रियान्वित करें" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "संस्करण %s क्षणचित्र (SQL कोड)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "डेटा परिभाषा पर नज़र रखना" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "डेटा आपरेशन पर नज़र रखना" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "ट्रैकिंग कि स्थिति" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%s दिखाएँ तारीख %s से %s तक, उपयोक्ता %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "कोइ डाटाबेस नहिं" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "तिथि" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "डेटा परिभाषा कथन" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "डेटा हेरफेर कथन" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL दुम्प ( फाइल डाउनलोड )" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL ढेर लगाना" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "यह विकल्प आपके टेबल और डेटा को बदल देगा." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL अमल" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "%s के रूप में निर्यात" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "संस्करण दिखाएँ" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "ट्रैकिंग निष्क्रिय %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "निष्क्रिय करे" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "ट्रैकिंग सक्रिय %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "सक्रिय करे" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "डेटा परिभाषा पर नज़र रखना" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "डेटा आपरेशन पर नज़र रखना" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "संस्करण बनाएँ" @@ -13088,8 +13084,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13222,8 +13218,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/hr.po b/po/hr.po index 13dd8c6864..36fa6cd176 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian \n" -"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Traži" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Traži" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Naziv ključa" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -110,7 +110,7 @@ msgstr "" "Datoteka %s nije dostupnana na ovom sistemu, molimo posjetite www.phpmyadmin." "net za više informacija." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." @@ -140,7 +140,7 @@ msgstr "Komentari tablice" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Stupac" @@ -163,7 +163,7 @@ msgstr "Stupac" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Vrsta" @@ -180,7 +180,7 @@ msgstr "Vrsta" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -195,7 +195,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Zadano" @@ -237,9 +237,9 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -264,9 +264,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Da" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tablica" @@ -402,7 +402,7 @@ msgstr "Praćene tablice" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Baza podataka" @@ -410,17 +410,17 @@ msgstr "Baza podataka" msgid "Last version" msgstr "Zadnja verzija" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Kreirano" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Ažurirano" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stanje" @@ -433,7 +433,7 @@ msgstr "Stanje" msgid "Action" msgstr "Aktivnost" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Prikaži" @@ -449,11 +449,11 @@ msgstr "Obriši podatke o praćenju za ovu tablicu" msgid "Drop" msgstr "Ispusti" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "neaktivno" @@ -461,11 +461,11 @@ msgstr "neaktivno" msgid "Versions" msgstr "Verzije" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Izvještaj o praćenju" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snimak strukture" @@ -620,14 +620,14 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " -"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" +"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -673,7 +673,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" @@ -700,7 +700,7 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti završiti ovaj uvoz sve dok ne " "povećate vremenska ograničenja unutar php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -924,7 +924,7 @@ msgstr "" "Poslužitelj pokrenut sa Suhosin. Proučite %sdokumentaciju%s radi mogućih " "problema." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." @@ -934,7 +934,7 @@ msgstr "\"DROP DATABASE\" izjave su onemogućene." msgid "Do you really want to execute \"%s\"?" msgstr "Želite li zaista " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -1021,8 +1021,8 @@ msgstr "Ponovno učitavanje privilegija" msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Zatvori" @@ -1163,13 +1163,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "kB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1210,7 +1210,7 @@ msgid "Traffic" msgstr "Promet" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1236,13 +1236,14 @@ msgstr "Poravnaj s mrežom" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "bez kompresije" @@ -1342,7 +1343,7 @@ msgstr "Opće osobine relacija" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1434,7 +1435,7 @@ msgstr "Objasni SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Vrijeme" @@ -1544,7 +1545,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1613,7 +1614,7 @@ msgid "Cancel" msgstr "Odustani" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Lokalno" @@ -1796,7 +1797,7 @@ msgstr "SQL upit" msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1809,7 +1810,7 @@ msgstr "Uređivanje" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1901,7 +1902,7 @@ msgstr "Veličina pokazatelja podataka" msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopiraj" @@ -1917,7 +1918,7 @@ msgstr "Linija teksta" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrija" @@ -2468,31 +2469,31 @@ msgstr "po satu" msgid "per day" msgstr "po danu" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Veličina fonta" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Uzlazno" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2651,14 +2652,14 @@ msgstr "Pretraživanje" msgid "Delete the matches for the %s table?" msgstr "Obriši rezultate pretrage za %s tablicu?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Izbriši" @@ -2762,17 +2763,11 @@ msgstr "vodoravno (okrenuta zaglavlja)" msgid "vertical" msgstr "uspravno" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši favorizirani upit" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Presloži po ključu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2799,98 +2794,98 @@ msgstr "Presloži po ključu" msgid "Options" msgstr "Opcije" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Djelomični tekstovi" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Potpuni tekstovi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Polje za prikaz relacija" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Eliminiraj" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "unutar upita" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2899,8 +2894,8 @@ msgstr "Upit je trajao %01.4f sek" msgid "With selected:" msgstr "S odabirom:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2911,48 +2906,48 @@ msgstr "S odabirom:" msgid "Check All" msgstr "Označi sve" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Prikaz ispisa" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Veza nije pronađena" @@ -3035,38 +3030,38 @@ msgstr "Nema definiranog indeksa!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Najvažnije" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Uspoređivanje" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentar" @@ -3107,7 +3102,7 @@ msgstr "Prikaz" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Strukturu" @@ -3259,18 +3254,18 @@ msgstr[1] "Umetnuto redaka: %1$d." msgid "Error while creating PDF:" msgstr "Dopušta čitanje podataka." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Nema tablica" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Provjeri tablicu" @@ -3521,7 +3516,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" @@ -3626,14 +3621,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3878,7 +3873,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Najv: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3941,7 +3936,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Pogoni" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Izrada profila" @@ -4433,8 +4428,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5010,9 +5005,8 @@ msgstr "Broj stranice:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5809,8 +5803,8 @@ msgstr "Zabilježi tablicu" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -6017,8 +6011,8 @@ msgstr "Analiziraj tablicu" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -6036,8 +6030,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6141,8 +6135,8 @@ msgstr "Izjave" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6163,8 +6157,8 @@ msgstr "Rad s automatskim povratom" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6362,8 +6356,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Korisničko ime:" @@ -6787,7 +6781,7 @@ msgstr "Baze podataka" msgid "Table(s):" msgstr "Tablice" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6843,12 +6837,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -7428,8 +7422,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7447,7 +7441,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." @@ -7575,11 +7569,11 @@ msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -7634,7 +7628,7 @@ msgstr "Dodaj prefiks" msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7990,17 +7984,17 @@ msgid "Drop the database (DROP)" msgstr "Ukloni bazu podataka" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strukturu i podatke" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podatke" @@ -8170,8 +8164,8 @@ msgstr "Dobro došli u %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Vjerojatan razlog za ovo je da niste napravili konfiguracijsku datoteku. Za " "izradu možete upotrijebiti %1$sskriptu za instalaciju%2$s da biste je " @@ -8453,7 +8447,7 @@ msgstr "Nazive polja stavi u prvi red" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8461,7 +8455,7 @@ msgstr "Računalo" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8479,7 +8473,7 @@ msgstr "PHP verzija" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9705,7 +9699,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9880,7 +9874,7 @@ msgid "Library" msgstr "Biblioteka" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Perzijski" @@ -10357,8 +10351,8 @@ msgstr "Pregled korisnika" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " @@ -10373,61 +10367,280 @@ msgstr "Odabrani korisnik nije pronađen u tablici privilegija." msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "po sekundi" +msgstr[1] "po sekundi" +msgstr[2] "po sekundi" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "u upotrebi" +msgstr[1] "u upotrebi" +msgstr[2] "u upotrebi" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistike redova" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Odaberite tablice" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Vrsta upita" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "Dodaj %s polja" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Preimenuj bazu podataka u" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Odaberite tablice" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Neispravan naziv tablice" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Dodaj novog korisnika" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL upit" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sub" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Osvježi" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dodaj/Izbriši stupce polja" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Resetiraj na zadano" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generirano s" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Veličina porasta datoteke podataka" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostalo" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Stanje" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ukupno" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zatvori" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vrijeme" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Favoriziraj ovaj SQL upit" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Oznaka" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Neka svi korisnici imaju pristup ovom favoritu" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10449,10 +10662,6 @@ msgstr "Kalendar" msgid "Bookmark this SQL query:" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Neka svi korisnici imaju pristup ovom favoritu" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamijeni postojećim favoritom istog naziva" @@ -10591,7 +10800,7 @@ msgstr "Provjeri za prepunjene tablice" msgid "Sort" msgstr "Presloži" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10761,7 +10970,7 @@ msgstr "Na snazi" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10935,7 +11144,7 @@ msgstr "Pogreška u ZIP arhivi:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" @@ -10993,7 +11202,7 @@ msgstr "Malo / Veliko" msgid "Toggle relation lines" msgstr "Za odabir relacije pritisnite:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Uvoz / Izvoz koordinate iz PDF sheme" @@ -11068,52 +11277,52 @@ msgstr "Izradi" msgid "Active options" msgstr "Opcije tablice" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tablica %1$s je izrađena." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Neuspješno kreiranje stranice" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "stranice" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvezi datoteke" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izradi novi indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Korisničko ime" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "preporučeno" @@ -11143,7 +11352,7 @@ msgstr "Dodane interne relacije" msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Pogreška tijekom spremanja koordinata za Kreatora." @@ -11573,210 +11782,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "Dodaj %s polja" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Preimenuj bazu podataka u" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Odaberite tablice" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Neispravan naziv tablice" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Dodaj novog korisnika" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL upit" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistike redova" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Odaberite tablice" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Vrsta upita" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "po sekundi" -msgstr[1] "po sekundi" -msgstr[2] "po sekundi" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "u upotrebi" -msgstr[1] "u upotrebi" -msgstr[2] "u upotrebi" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sub" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Osvježi" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dodaj/Izbriši stupce polja" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Resetiraj na zadano" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12801,8 +12806,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12845,49 +12850,39 @@ msgstr "" msgid "Wrong data" msgstr "Nema baza podataka" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Izrađen je favorit %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Favoriziraj ovaj SQL upit" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Oznaka" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13134,150 +13129,150 @@ msgstr "Odaberi polje za prikaz" msgid "No column selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dopušta umetanje i zamjenu podataka." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nema baza podataka" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Vrsta izvoza" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Deactivate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiviraj sada" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Izradi relaciju" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Izradi relaciju" @@ -13659,8 +13654,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13794,8 +13789,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14515,6 +14510,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izvrši favorizirani upit" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -15168,8 +15168,8 @@ msgstr "najv. uzastopnih veza" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" -#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" +#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/hu.po b/po/hu.po index d8650da454..6a5d487d97 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-16 15:29+0200\n" "Last-Translator: Ádám Papp-Kuster \n" -"Language-Team: Hungarian " -"\n" -"Language: hu\n" +"Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Keresés" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Keresés" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Indítás" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Kulcsnév" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Leírás" @@ -109,7 +109,7 @@ msgstr "" "A(z) %s fájl nem elérhető ezen a rendszeren, keresse fel a www.phpmyadmin." "net oldalt további információkért." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." @@ -139,7 +139,7 @@ msgstr "Tábla megjegyzése" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Oszlop" @@ -162,7 +162,7 @@ msgstr "Oszlop" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Típus" @@ -179,7 +179,7 @@ msgstr "Típus" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulla" @@ -194,7 +194,7 @@ msgstr "Nulla" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Alapértelmezett" @@ -236,9 +236,9 @@ msgstr "Megjegyzések" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nem" @@ -263,9 +263,9 @@ msgstr "Nem" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Igen" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tábla" @@ -399,7 +399,7 @@ msgstr "Nyomon követett táblák" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Adatbázis" @@ -407,17 +407,17 @@ msgstr "Adatbázis" msgid "Last version" msgstr "Legutolsó verzió" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Létrehozva" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "frissítve" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Állapot" @@ -430,7 +430,7 @@ msgstr "Állapot" msgid "Action" msgstr "Művelet" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Megjelenítés" @@ -446,11 +446,11 @@ msgstr "Tábla nyomkövetési adatainak törlése" msgid "Drop" msgstr "Eldobás" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktív" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "nem aktív" @@ -458,11 +458,11 @@ msgstr "nem aktív" msgid "Versions" msgstr "Verziók" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Nyomkövetési jelentés" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Szerkezeti pillanatkép" @@ -620,11 +620,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " -"%sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" +"sdokumentációban%s a korlátozás feloldása végett." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -672,7 +672,7 @@ msgstr "" "Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" @@ -700,7 +700,7 @@ msgstr "" "jelenti, hogy a phpMyAdmin nem tudja befejezni ezt az importálást, ha Ön nem " "növeli meg a PHP időkorlátozását." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -903,9 +903,6 @@ msgstr "" #: index.php:489 #, php-format -#| msgid "" -#| "ditional features for working with linked tables have been ctivated. To d " -#| "out why click %shere%s." msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." @@ -932,7 +929,7 @@ msgstr "" "A szerver Suhosinnal fut. Kérjük, hogy a lehetséges problémáknak nézzen " "utána a %sdokumentációban%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." @@ -941,7 +938,7 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották." msgid "Do you really want to execute \"%s\"?" msgstr "Valóban végre szeretné hajtani: „%s”?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -984,7 +981,6 @@ msgstr "Index szerkesztése" #: js/messages.php:44 libraries/display_indexes.lib.php:199 #: libraries/display_indexes.lib.php:205 #, php-format -#| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "%s oszlop hozzáadása az indexhez" @@ -1026,8 +1022,8 @@ msgstr "A jogok újratöltése" msgid "Removing Selected Users" msgstr "A kijelölt felhasználók törlése" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Bezárás" @@ -1052,7 +1048,6 @@ msgid "Connections / Processes" msgstr "Kapcsolatok / Folyamatok" #: js/messages.php:70 -#| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible" msgstr "A helyi megfigyelés beállításai nem kompatibilisek" @@ -1151,13 +1146,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1196,7 +1191,7 @@ msgid "Traffic" msgstr "Forgalom" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Beállítások" @@ -1216,13 +1211,14 @@ msgstr "Diagram hozzáadása" msgid "Please add at least one variable to the series" msgstr "Legalább egy változót adjon meg a sorozathoz" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nincs" @@ -1320,7 +1316,7 @@ msgstr "Beállítások megváltoztatása" msgid "Current settings" msgstr "Jelenlegi beállítások" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagramcím" @@ -1400,7 +1396,7 @@ msgstr "A kimenet magyarázata" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Idő" @@ -1410,7 +1406,6 @@ msgid "Total time:" msgstr "Teljes idő:" #: js/messages.php:166 -#| msgid "Profiling" msgid "Profiling results" msgstr "Eredmények elemzése" @@ -1500,13 +1495,12 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" #: js/messages.php:191 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Megfigyelési beállítások importálása" @@ -1558,7 +1552,7 @@ msgid "Cancel" msgstr "Mégse" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Betöltés" @@ -1708,7 +1702,7 @@ msgstr "SQL-lekérdezési panelek elrejtése" msgid "Show query box" msgstr "Lekérdezési doboz megjelenítése" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1721,7 +1715,7 @@ msgstr "Módosítás" msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1799,7 +1793,6 @@ msgid "Query results" msgstr "Lekérdezési eredmények" #: js/messages.php:295 -#| msgid "Data pointer size" msgid "Data point content" msgstr "Adatmutató tartalma" @@ -1808,7 +1801,7 @@ msgstr "Adatmutató tartalma" msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Másolás" @@ -1817,7 +1810,6 @@ msgid "Point" msgstr "Pont" #: js/messages.php:304 -#| msgid "Lines terminated by" msgid "Linestring" msgstr "Sorvég-karakter" @@ -1825,7 +1817,7 @@ msgstr "Sorvég-karakter" msgid "Polygon" msgstr "Sokszög" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2304,31 +2296,31 @@ msgstr "óránként" msgid "per day" msgstr "naponta" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "A létező beállító fájl (%s) nem olvasható." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Betűméret" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Növekvő" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2482,14 +2474,14 @@ msgstr "Tartalom" msgid "Delete the matches for the %s table?" msgstr "Törli a találatokat a %s táblában?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Törlés" @@ -2580,16 +2572,11 @@ msgstr "vízszintesen (elforgatott fejlécek)" msgid "vertical" msgstr "függőlegesen" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Minden %s. sor legyen fejléc" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Kulcs szerinti rendezés" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,93 +2603,93 @@ msgstr "Kulcs szerinti rendezés" msgid "Options" msgstr "Beállítások" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Részleges szövegek" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Teljes szövegek" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relációs kulcs" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relációs megjelenítési mező" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Bináris tartalom megjelenítése" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Bináris tartalom megjelenítése HEX-ként" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Böngészőátalakítás elrejtése" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Jól ismert szöveg" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Jól ismert bináris" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Leállít" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Becsült érték lehet. Lásd [doc@faq3-11]GyIK 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "lekérdezésben" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " -"%sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" +"sdokumentációban%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Megjelenített sorok" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "összesen" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2711,8 +2698,8 @@ msgstr "a lekérdezés %01.4f másodpercig tartott" msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2723,45 +2710,45 @@ msgstr "A kijelöltekkel végzendő művelet:" msgid "Check All" msgstr "Mind kijelölése" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportálás" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Nézet létrehozása" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Nyomtatási nézet" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Diagram megjelenítése" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -2842,38 +2829,38 @@ msgstr "Nincs meghatározott index!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexek" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Számosság" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Illesztés" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Megjegyzés" @@ -2915,7 +2902,7 @@ msgstr "Nézet" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Szerkezet" @@ -3060,17 +3047,17 @@ msgstr[1] "A(z) %1$d sor beszúrása megtörtént." msgid "Error while creating PDF:" msgstr "Hiba történt a PDF létrehozása közben:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "A beállítások nem tölthetők be vagy menthetők" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Legutóbbi táblák" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nincsenek utoljára használt táblák" @@ -3313,7 +3300,7 @@ msgid "Maximum rows to plot" msgstr "A megjelenítendő sorok száma" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" @@ -3415,14 +3402,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3658,7 +3645,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3719,7 +3706,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Belső" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Adatgyűjtés" @@ -4196,8 +4183,8 @@ msgstr "CHAR mezők szerkesztése" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4747,9 +4734,8 @@ msgstr "Oldalcímek" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Megadhatja a böngésző fejlécében megjelenített címet. Hivatkozzon a " "[doc@cfg_TitleTable]dokumentációra[/doc] a mágikus parancsok végett, amiket " @@ -4880,9 +4866,9 @@ msgid "" msgstr "" "Amennyiben szeretné használni az SQL-validátor szolgáltatást, tudatában kell " "lennie annak, hogy [strong]minden SQL parancsot névtelenül tároljuk " -"statisztikai okokból[/strong]. [br][em][a@http://sqlvalidator.mimer." -"com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. " -"All rights reserved.[/em]" +"statisztikai okokból[/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:220 msgid "Startup" @@ -5194,8 +5180,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" 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])" +"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:296 msgid "Memory limit" @@ -5583,8 +5569,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" 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]" +"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:377 msgid "Bookmark table" @@ -5593,14 +5579,14 @@ msgstr "Könyvjelzők táblája" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, alapértelmezés: " -"[kbd]pma_column_info[/kbd]" +"Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, alapértelmezés: [kbd]" +"pma_column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5674,8 +5660,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Hagyja üresen, ha nem akar Tervező támogatást, alapértelmezés: " -"[kbd]pma_designer_coords[/kbd]" +"Hagyja üresen, ha nem akar Tervező támogatást, alapértelmezés: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5687,8 +5673,8 @@ msgid "" "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" "Bővebben a [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " -"hibakövetőben[/a] és a [a@http://bugs.mysql.com/19588]MySQL " -"hibabejelentőben[/a] olvashat róla" +"hibakövetőben[/a] és a [a@http://bugs.mysql.com/19588]MySQL hibabejelentőben" +"[/a] olvashat róla" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5715,8 +5701,8 @@ msgstr "Adatbázisok elrejtése" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5798,8 +5784,8 @@ msgstr "A konfigurációs hitelesítés jelszava" 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]" +"Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5851,8 +5837,8 @@ msgstr "Utoljára használt tábla" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" 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]" @@ -5871,8 +5857,8 @@ msgstr "SHOW DATABASES parancs" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Lásd a [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]hitelesítési " "típusok[/a] példáját" @@ -5912,8 +5898,8 @@ 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]" +"Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5999,11 +5985,11 @@ msgstr "Utasítások követésre" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" +#| "Leave blank for no SQL query tracking support, suggested: [kbd]" +#| "pma_tracking[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" 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]" @@ -6028,8 +6014,8 @@ msgstr "Verziók automatikus létrehozása" #| "blank for no user preferences storage in database, suggested: d]_config[/" #| "kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" 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]" @@ -6233,11 +6219,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: " -"[kbd]anonymous[/kbd])" +"Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: [kbd]" +"anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Felhasználónév" @@ -6658,7 +6644,7 @@ msgstr "Adatbázis(ok):" msgid "Table(s):" msgstr "Táblá(k):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Sorok:" @@ -6707,8 +6693,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése a(z) %1$sstrftime%2$s használatával " "történik, vagyis időformázó karakterláncokat használhat. Továbbá a következő " @@ -7266,8 +7252,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7283,7 +7269,7 @@ msgid "No data found for GIS visualization." msgstr "Nem található adat a GIS megjelenítőhöz." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." @@ -7403,11 +7389,11 @@ msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, vagy a CTRL+nyilakkal bárhová " "léphet" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -7458,7 +7444,7 @@ msgstr "Tábla előtagjának lecserélése" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Valóban végre szeretné hajtani a következő lekérdezést?" @@ -7807,17 +7793,17 @@ msgid "Drop the database (DROP)" msgstr "Adatbázis eldobása (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Csak a szerkezet" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Szerkezet és adatok" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Csak az adatok" @@ -7980,11 +7966,11 @@ msgstr "Üdvözli a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " -"%1$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" +"$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8241,7 +8227,7 @@ msgstr "A mezőneveket tegye az első sorba" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8249,7 +8235,7 @@ msgstr "Hoszt" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8267,7 +8253,7 @@ msgstr "PHP verzió" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9438,7 +9424,7 @@ msgstr "Tulajdonságok" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9603,7 +9589,7 @@ msgid "Library" msgstr "Könyvtár" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verzió" @@ -10072,13 +10058,13 @@ msgstr "Felhasználók áttekintése" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " -"%stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" +"stöltse be újra a jogokat%s a folytatás előtt." #: libraries/server_privileges.lib.php:3036 msgid "The selected user was not found in the privilege table." @@ -10088,63 +10074,273 @@ msgstr "Nem található a kiválasztott felhasználó a privilégium táblában. msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d másodperc" +msgstr[1] "%d másodperc" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d perc" +msgstr[1] "%d perc" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Naplóstatisztikák" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Kiválasztott időtartomány:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Csak SELECT,INSERT,UPDATE és DELETE utasítások lekérése" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Változóadat eltávolítása az INSERT utasításból a jobb csoportosításért" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Válassza ki, hogy melyik naplóból szeretne statisztikát előállítani." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Az eredmények csoportosítva vannak a lekérdezés szövege szerint." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Lekérdezés elemző" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Információ" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Jegyezze meg:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Diagram hozzáadása" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Adatbázis eltávolítása" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Állapot változó(k)" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Táblák kiválasztása" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "vagy gépelje be a változó nevét:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Osztó alkalmazása" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Egység hozzáfűzése az adatértékekhez" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Új szerver hozzáadása" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL-lekérdezések" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Indítás" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Utasítások/Beállítás" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "A szövegkiemelés engedélyezése" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Frissítési időköz" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagram oszlopai" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagram elrendezés" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Visszaállítás az alapértékre" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-eredmény" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Készítette" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Az adatfájl növekedési mérete" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Egyéb" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Kezdés" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Teljes idő:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Idő" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Bezárás" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Idő" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Név" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" +"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " +"engedélyezett" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10165,12 +10361,6 @@ msgstr "Törlés" msgid "Bookmark this SQL query:" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" -"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " -"engedélyezett" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Az ugyanazon nevű könyvjelző kicserélése" @@ -10261,8 +10451,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " -"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" +"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." #: libraries/structure.lib.php:68 tbl_operations.php:311 @@ -10312,7 +10502,7 @@ msgstr "A felülírott táblák kijelölése" msgid "Sort" msgstr "Rendezés" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nincs" @@ -10468,7 +10658,7 @@ msgstr "Hatásos" msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Lekérdezési hiba" @@ -10627,7 +10817,7 @@ msgstr "Hiba a ZIP archívumban:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" @@ -10685,7 +10875,7 @@ msgstr "Kicsi/nagy kapcsoló" msgid "Toggle relation lines" msgstr "A kapcsolat kiválasztásához, kattintson :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "A PDF-séma importálási/exportálási koordinátái" @@ -10751,43 +10941,43 @@ msgstr "Összegzés" msgid "Active options" msgstr "Tábla beállításai" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Az oldal elkészült" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Az oldal létrehozása meghiúsult" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Oldal" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importálás a kiválasztott oldalakról" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportálás a kiválasztott oldalakra" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Oldal létrehozása és exportálás arra" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Új oldal neve: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Méretezendő exportálás/importálás" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "ajánlott" @@ -10817,7 +11007,7 @@ msgstr "A belső kapcsolat hozzáadása megtörtént" msgid "Relation deleted" msgstr "A kapcsolat törlése kész" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Hiba történt a Tervező koordinátáinak mentésekor." @@ -10871,8 +11061,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"További beállításokat állíthat be a config.inc.php modosításával, pl. " -"%sBeállító parancsfájl%s használatával." +"További beállításokat állíthat be a config.inc.php modosításával, pl. %" +"sBeállító parancsfájl%s használatával." #: prefs_manage.php:308 msgid "Save to browser's storage" @@ -11243,199 +11433,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Információ" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Jegyezze meg:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Diagram hozzáadása" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Adatbázis eltávolítása" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Állapot változó(k)" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Táblák kiválasztása" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "vagy gépelje be a változó nevét:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Osztó alkalmazása" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Egység hozzáfűzése az adatértékekhez" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Új szerver hozzáadása" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL-lekérdezések" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Naplóstatisztikák" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Kiválasztott időtartomány:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Csak SELECT,INSERT,UPDATE és DELETE utasítások lekérése" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Változóadat eltávolítása az INSERT utasításból a jobb csoportosításért" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Válassza ki, hogy melyik naplóból szeretne statisztikát előállítani." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Az eredmények csoportosítva vannak a lekérdezés szövege szerint." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Lekérdezés elemző" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d másodperc" -msgstr[1] "%d másodperc" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d perc" -msgstr[1] "%d perc" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Indítás" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Utasítások/Beállítás" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "A szövegkiemelés engedélyezése" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Frissítési időköz" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagram oszlopai" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagram elrendezés" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Visszaállítás az alapértékre" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12366,8 +12363,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Ön Git verziót használ, futtassa a [kbd]git pull[/kbd] parancsot :-)" -"[br]Legújabb stabil verzió: %s, kiadás dátuma: %s." +"Ön Git verziót használ, futtassa a [kbd]git pull[/kbd] parancsot :-)[br]" +"Legújabb stabil verzió: %s, kiadás dátuma: %s." #: setup/lib/index.lib.php:203 msgid "No newer stable version is available" @@ -12471,12 +12468,12 @@ msgid "" "of users, including you, are connected to." msgstr "" "Ha úgy érzi, gogy erre szükség van, akkor használjon további védelmi " -"beállításokat - [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]állomás hitelesítési[/a] beállítások és [a@?" -"page=form&formset=features#tab_Security]megbízható proxyk listája[/a]. " -"Az IP-alapú védelem azonban lehet, hogy nem megbízható, ha az Ön IP-címe " -"olyan internetszolgáltatóhoz tartozik, ahol több ezer felhasználó, köztük Ön " -"is, csatlakozik az internethez." +"beállításokat - [a@?page=servers&mode=edit&id=%1$d#tab_Server_config]" +"állomás hitelesítési[/a] beállítások és [a@?page=form&" +"formset=features#tab_Security]megbízható proxyk listája[/a]. Az IP-alapú " +"védelem azonban lehet, hogy nem megbízható, ha az Ön IP-címe olyan " +"internetszolgáltatóhoz tartozik, ahol több ezer felhasználó, köztük Ön is, " +"csatlakozik az internethez." #: setup/lib/index.lib.php:316 #, fuzzy, php-format @@ -12490,8 +12487,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Ön a [kbd]konfigurációs[/kbd] hitelesítési típust állította be, s az " "automatikus bejelentkezéshez megadta a felhasználónevet és a jelszót, ami " @@ -12545,48 +12542,38 @@ msgstr "" msgid "Wrong data" msgstr "Hibás adat" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "A(z) „%s” könyvjelző használata alapértelmezett tallózás lekérdezésként." -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "A(z) %s könyvjelző elkészült" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Név" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12813,148 +12800,148 @@ msgstr "Válassza ki a megjelenítendő oszlopot" msgid "No column selected." msgstr "Nem jelölte ki a sort" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Nyomkövetés aktív." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Nyomkövetés aktív." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL utasítások végrehajtva." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Nyomkövetési utasítások" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Nyomkövetési adat sor törlése a jelentésből" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nincs adat" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dátum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Adat definiáló utasítás" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Adat manipuláló utasítás" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL kiírás (fájl letöltés)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL kiírás" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ez az opció ki fogja cserélni a táblát és a tartalmazott adatot." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL végrehajtás" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportálás: %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Verziók megjelenítése" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Inaktiválás" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Kikapcsolás most" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "%s adatai hiányoznak" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Bekapcsolás most" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Verzió létrehozása" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Verzió létrehozása" @@ -13324,8 +13311,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13456,8 +13443,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14179,6 +14166,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "A concurrent_insert 0-ra van állítva" +#~ msgid "Headers every %s rows" +#~ msgstr "Minden %s. sor legyen fejléc" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14445,14 +14435,14 @@ msgstr "A concurrent_insert 0-ra van állítva" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "E beállítás [kbd]beágyazottra[/kbd] állításakor a táblanév alias kerül " -#~ "csak felhasználásra a táblák felosztásához/beágyazásához a " -#~ "$cfg['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" +#~ "csak felhasználásra a táblák felosztásához/beágyazásához a $cfg" +#~ "['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" #~ msgid "Display table comment instead of its name" #~ msgstr "A tábla megjegyzésének megjelenítése a neve helyett" @@ -14802,8 +14792,8 @@ msgstr "A concurrent_insert 0-ra van állítva" #~ "No themes support; please check your configuration and/or your themes in " #~ "directory %s." #~ msgstr "" -#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) " -#~ "%s könyvtárban." +#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %" +#~ "s könyvtárban." #~ msgid "Switch to" #~ msgstr "Váltás" @@ -14966,5 +14956,5 @@ msgstr "A concurrent_insert 0-ra van állítva" #~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be " #~ "enabled if your web server supports it" #~ msgstr "" -#~ "Engedélyeznie kell ezt a [a@?page=form&" -#~ "formset=features#tab_Security]beállítást[/a], ha támogatja a webszerver" +#~ "Engedélyeznie kell ezt a [a@?page=form&formset=features#tab_Security]" +#~ "beállítást[/a], ha támogatja a webszerver" diff --git a/po/hy.po b/po/hy.po index 907ecb5eb6..28de41e755 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-03-30 12:19+0200\n" "Last-Translator: Hamlet Muradyan \n" "Language-Team: Armenian \n" -"Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.5-dev\n" @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Որոնում" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Որոնում" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Ինդեքսի անվանումը" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Նկարագրություն" @@ -110,7 +110,7 @@ msgstr "" "%s ֆայլը գնտված չէ այս համակարգում, լրացուցիչ ինֆորմացիայի համար այցելե՛ք " "www.phpmyadmin.net։" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s տվյալների բազան ստեղծված է։" @@ -140,7 +140,7 @@ msgstr "Աղյուսակի մեկնաբանությունը" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Սյուն" @@ -163,7 +163,7 @@ msgstr "Սյուն" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Տեսակ" @@ -180,7 +180,7 @@ msgstr "Տեսակ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -195,7 +195,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Լռելյան" @@ -237,9 +237,9 @@ msgstr "Մեկնաբանություններ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ոչ" @@ -264,9 +264,9 @@ msgstr "Ոչ" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Այո" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Աղյուսակ" @@ -399,7 +399,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Տվյալների բազա" @@ -407,17 +407,17 @@ msgstr "Տվյալների բազա" msgid "Last version" msgstr "Վերջին տարբերակը" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Ստեղծված է" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Թարմացված է" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Վիճակը" @@ -430,7 +430,7 @@ msgstr "Վիճակը" msgid "Action" msgstr "Գործողություն" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Ցուցադրել" @@ -446,11 +446,11 @@ msgstr "" msgid "Drop" msgstr "Հեռացնել" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "միացված է" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "անջատված է" @@ -458,11 +458,11 @@ msgstr "անջատված է" msgid "Versions" msgstr "Տարբերակներ" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Կառուցվածքի պատկերը" @@ -606,8 +606,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -647,7 +647,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -669,7 +669,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -853,7 +853,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -862,7 +862,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -946,8 +946,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1070,13 +1070,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1115,7 +1115,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1135,13 +1135,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1234,7 +1235,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1314,7 +1315,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1405,7 +1406,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1462,7 +1463,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1610,7 +1611,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1623,7 +1624,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1705,7 +1706,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1721,7 +1722,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2190,31 +2191,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Աճման կարգով" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2364,14 +2365,14 @@ msgstr "Թերթել" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Հեռացնել" @@ -2458,16 +2459,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2494,89 +2490,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2585,8 +2581,8 @@ msgstr "" msgid "With selected:" msgstr "Նշվածները՝" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2597,45 +2593,45 @@ msgstr "Նշվածները՝" msgid "Check All" msgstr "Նշել բոլորը" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Արտահանում" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2710,38 +2706,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Համեմատումը" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2781,7 +2777,7 @@ msgstr "Ներկայացում" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2926,15 +2922,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3173,7 +3169,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3270,14 +3266,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3513,7 +3509,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3572,7 +3568,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4030,8 +4026,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4552,9 +4548,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5287,8 +5282,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5481,8 +5476,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5499,8 +5494,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5597,8 +5592,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5617,8 +5612,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5804,8 +5799,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6193,7 +6188,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6242,8 +6237,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6732,8 +6727,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6749,7 +6744,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6865,11 +6860,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6918,7 +6913,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7246,17 +7241,17 @@ msgid "Drop the database (DROP)" msgstr "Հեռացնել տվյալների բազան (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Միայն կառուղվածքը" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Կառուցվածքն ու տվյալները" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Միայն տվյալները" @@ -7419,8 +7414,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7664,13 +7659,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7686,7 +7681,7 @@ msgstr "Տարբերակներ" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8720,7 +8715,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8881,7 +8876,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9322,8 +9317,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9334,48 +9329,241 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Status" msgid "State" msgstr "Վիճակը" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9394,10 +9582,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9523,7 +9707,7 @@ msgstr "" msgid "Sort" msgstr "Դասավորել" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9677,7 +9861,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9814,7 +9998,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9870,7 +10054,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9928,39 +10112,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9988,7 +10172,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10392,186 +10576,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11446,8 +11450,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11488,43 +11492,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11730,143 +11726,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12214,8 +12210,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12333,8 +12329,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ia.po b/po/ia.po index 2a281e68e8..0b2e525f6e 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-30 13:53+0200\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua \n" -"Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -49,7 +49,7 @@ msgid "Search:" msgstr "Cerca:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -78,21 +78,21 @@ msgstr "Cerca:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Vade" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nomine clave" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Description" @@ -111,7 +111,7 @@ msgstr "" "Le %s file non es disponibile sur le sistema, tu visita phpmyadmin.net pro " "ulterior informationes." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Le base de datos %1$s ha essite create." @@ -139,7 +139,7 @@ msgstr "Commentos de tabella:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Columna" @@ -162,7 +162,7 @@ msgstr "Columna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typo" @@ -179,7 +179,7 @@ msgstr "Typo" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -194,7 +194,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Predefinite" @@ -236,9 +236,9 @@ msgstr "Commentos" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "No" @@ -263,9 +263,9 @@ msgstr "No" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Si" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabula" @@ -393,7 +393,7 @@ msgstr "Tabulas traciate" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de datos" @@ -401,17 +401,17 @@ msgstr "Base de datos" msgid "Last version" msgstr "Ultime version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Create" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Actualisate" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stato" @@ -424,7 +424,7 @@ msgstr "Stato" msgid "Action" msgstr "Action" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Monstra" @@ -440,11 +440,11 @@ msgstr "Dele datos traciante pro iste tabula" msgid "Drop" msgstr "Lassa cader" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "active" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "non active" @@ -452,11 +452,11 @@ msgstr "non active" msgid "Versions" msgstr "Versiones" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Reporto de tracia" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Fragmento de structura" @@ -604,8 +604,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Probabilemente tu es essayante incargar un file troppo grande. Pro favor tu " "refere al %sdocumentation%s pro eluder iste limite." @@ -657,7 +657,7 @@ msgstr "" "Il non es possibile cargar plugins de importar, pro favor tu verifica tu " "installation!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Marcator de libro %s create" @@ -684,7 +684,7 @@ msgstr "" "significa que le tempore limite ponite in le configuration es troppo basse " "pro permitter a phpMyAdmin terminar le operation." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -892,10 +892,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sur le servitor es executante Suhosin. Controla le documentation: " -"%sdocumentation%s pro possibile problema." +"Sur le servitor es executante Suhosin. Controla le documentation: %" +"sdocumentation%s pro possibile problema." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Commandos \"DROP DATABASE\" es dishabilitate." @@ -904,7 +904,7 @@ msgstr "Commandos \"DROP DATABASE\" es dishabilitate." msgid "Do you really want to execute \"%s\"?" msgstr "Tu es vermente secur que tu vole executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Tu es per DESTRUER un complete base de datos!" @@ -988,8 +988,8 @@ msgstr "Recargante privilegios" msgid "Removing Selected Users" msgstr "Removente usatores selectionate" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Claude" @@ -1117,13 +1117,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1162,7 +1162,7 @@ msgid "Traffic" msgstr "Traffico" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Preferentias" @@ -1182,13 +1182,14 @@ msgstr "adde graphico a grillia" msgid "Please add at least one variable to the series" msgstr "Adde al minus un variabile al serie" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Necun" @@ -1288,7 +1289,7 @@ msgstr "Modifica preferentias" msgid "Current settings" msgstr "Preferentias currente" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Titulo del graphico" @@ -1375,7 +1376,7 @@ msgstr "Explica le exito" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tempore" @@ -1468,7 +1469,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1525,7 +1526,7 @@ msgid "Cancel" msgstr "Cancella" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Cargar" @@ -1677,7 +1678,7 @@ msgstr "Cela quadro de query" msgid "Show query box" msgstr "Monstra quadro de query" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1690,7 +1691,7 @@ msgstr "Modifica" msgid "No rows selected" msgstr "Necun rango seligite" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1772,7 +1773,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1788,7 +1789,7 @@ msgstr "Linestring (catena de linea)" msgid "Polygon" msgstr "Polygono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2257,31 +2258,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2421,14 +2422,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2515,16 +2516,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2551,89 +2547,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2642,8 +2638,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2654,45 +2650,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2767,38 +2763,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2838,7 +2834,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2983,15 +2979,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3226,7 +3222,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3323,14 +3319,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3566,7 +3562,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3625,7 +3621,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4081,8 +4077,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4603,9 +4599,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5338,8 +5333,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5532,8 +5527,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5550,8 +5545,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5650,8 +5645,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5670,8 +5665,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5857,8 +5852,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6244,7 +6239,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6293,8 +6288,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6783,8 +6778,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6800,7 +6795,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6916,11 +6911,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6965,7 +6960,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7292,17 +7287,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7463,8 +7458,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7706,13 +7701,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7726,7 +7721,7 @@ msgstr "Version de PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Base de datos:" @@ -8752,7 +8747,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8913,7 +8908,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9354,8 +9349,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9366,46 +9361,239 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Stato" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9424,10 +9612,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9553,7 +9737,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9707,7 +9891,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9842,7 +10026,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9898,7 +10082,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9956,39 +10140,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10016,7 +10200,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10420,186 +10604,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11474,8 +11478,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11516,43 +11520,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11756,143 +11752,143 @@ msgstr "Selige columna de monstrar:" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12240,8 +12236,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12359,8 +12355,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/id.po b/po/id.po index baaa165ca9..2a4395e5ac 100644 --- a/po/id.po +++ b/po/id.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-13 17:32+0200\n" "Last-Translator: Dadan Setia \n" -"Language-Team: Indonesian " -"\n" -"Language: id\n" +"Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" "X-Poedit-Basepath: ../../..\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Cari:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "Cari:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Kirim" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nama kunci" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Deskripsi" @@ -108,7 +108,7 @@ msgstr "" "Berkas %s tidak ditemukan dalam sistem ini, harap kunjungi www.phpmyadmin." "net untuk informasi lebih lanjut." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Basis data %1$s telah dibuat." @@ -136,7 +136,7 @@ msgstr "Komentar tabel:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolom" @@ -159,7 +159,7 @@ msgstr "Kolom" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Jenis" @@ -176,7 +176,7 @@ msgstr "Jenis" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Kosong" @@ -191,7 +191,7 @@ msgstr "Kosong" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Bawaan" @@ -233,9 +233,9 @@ msgstr "Komentar" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Tidak" @@ -260,9 +260,9 @@ msgstr "Tidak" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ya" @@ -294,7 +294,6 @@ msgstr "Nama basis data %1$s telah diubah menjadi %2$s" #: db_operations.php:133 #, php-format -#| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Basis data %1$s telah disalin ke %2$s" @@ -315,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -338,7 +337,6 @@ msgstr "sedang digunakan" #: db_printview.php:117 libraries/plugins/export/ExportSql.class.php:947 #: libraries/schema/Pdf_Relation_Schema.class.php:1341 -#| msgid "Creation" msgid "Creation:" msgstr "Pembuatan:" @@ -349,7 +347,6 @@ msgstr "Pembaruan terakhir:" #: db_printview.php:135 libraries/plugins/export/ExportSql.class.php:973 #: libraries/schema/Pdf_Relation_Schema.class.php:1351 -#| msgid "Last check" msgid "Last check:" msgstr "Pemeriksaan terakhir:" @@ -392,7 +389,7 @@ msgstr "Tabel yang dilacak" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Basis data" @@ -400,17 +397,17 @@ msgstr "Basis data" msgid "Last version" msgstr "Versi terakhir" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Dibuat" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Diperbarui" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -423,7 +420,7 @@ msgstr "Status" msgid "Action" msgstr "Tindakan" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Tampilkan" @@ -439,11 +436,11 @@ msgstr "Hapus pelacakan data untuk tabel ini" msgid "Drop" msgstr "Hapus" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "tidak aktif" @@ -451,11 +448,11 @@ msgstr "tidak aktif" msgid "Versions" msgstr "Versi" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Laporan pelacakan" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snapshot struktur" @@ -520,18 +517,15 @@ msgid "Use OpenStreetMaps as Base Layer" msgstr "Gunakan OpenStreetMaps sebagai Lapisan Dasar" #: gis_data_editor.php:161 -#| msgid "SRID" msgid "SRID:" msgstr "SRID:" #: gis_data_editor.php:184 #, php-format -#| msgid "Geometry" msgid "Geometry %d:" msgstr "Geometri %d:" #: gis_data_editor.php:206 -#| msgid "Point" msgid "Point:" msgstr "Titik:" @@ -558,18 +552,15 @@ msgstr "Tambahkan titik" #: gis_data_editor.php:262 #, php-format -#| msgid "Linestring" msgid "Linestring %d:" msgstr "Deretan baris %d:" #: gis_data_editor.php:265 gis_data_editor.php:341 -#| msgid "Outer Ring" msgid "Outer ring:" msgstr "Lingkar Luar:" #: gis_data_editor.php:267 gis_data_editor.php:343 #, php-format -#| msgid "Inner Ring" msgid "Inner ring %d:" msgstr "Lingkar Dalam %d:" @@ -583,7 +574,6 @@ msgstr "Tambahkan lingkar dalam" #: gis_data_editor.php:325 #, php-format -#| msgid "Polygon" msgid "Polygon %d:" msgstr "Poligon %d:" @@ -600,24 +590,21 @@ msgid "Output" msgstr "Keluaran" #: gis_data_editor.php:402 -#| msgid "" -#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " -#| "string into the \"Value\" field" msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field" msgstr "" -"Pilih \"GeomFromText\" dari kolom \"Fungsi\" dan rekatkan string di bawahnya ke " -"dalam isian \"Value\"" +"Pilih \"GeomFromText\" dari kolom \"Fungsi\" dan rekatkan string di bawahnya " +"ke dalam isian \"Value\"" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Silahkan lihat " -"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Silahkan lihat %" +"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -662,7 +649,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Markah %s dibuat" @@ -689,7 +676,7 @@ msgstr "" "phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas " "waktu eksekusi php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -741,12 +728,10 @@ msgid "Server version:" msgstr "Versi Server:" #: index.php:252 -#| msgid "Protocol version" msgid "Protocol version:" msgstr "Versi protokol:" #: index.php:256 -#| msgid "User" msgid "User:" msgstr "Pengguna:" @@ -761,12 +746,10 @@ msgid "Web server" msgstr "Server web" #: index.php:286 -#| msgid "Database client version" msgid "Database client version:" msgstr "Versi klien basis data:" #: index.php:290 -#| msgid "PHP extension" msgid "PHP extension:" msgstr "Ekstensi PHP:" @@ -775,7 +758,6 @@ msgid "Show PHP information" msgstr "Tampilkan informasi PHP" #: index.php:327 -#| msgid "Version information" msgid "Version information:" msgstr "Informasi versi:" @@ -847,11 +829,10 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" -"Parameter PHP " -"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a]anda lebih kecil dari dari " -"validitas cookie di phpMyAdmin, karenanya, login anda akan lebih berakhir " -"cepat daripada konfigurasi phpMyAdmin." +"Parameter PHP [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a]anda lebih kecil " +"dari dari validitas cookie di phpMyAdmin, karenanya, login anda akan lebih " +"berakhir cepat daripada konfigurasi phpMyAdmin." #: index.php:456 msgid "" @@ -910,17 +891,16 @@ msgstr "" "Server berjalan dengan Suhosin. Harap rujuk %sdokumentasi%s untuk " "kemungkinan masalah." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." #: js/messages.php:30 #, php-format -#| msgid "Do you really want to " msgid "Do you really want to execute \"%s\"?" msgstr "Anda yakin akan mengeksekusi \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS seluruh basis data!" @@ -1005,8 +985,8 @@ msgstr "Muat Ulang Hak Akses" msgid "Removing Selected Users" msgstr "Hapus pengguna yang dipilih" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Tutup" @@ -1133,13 +1113,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1178,7 +1158,7 @@ msgid "Traffic" msgstr "Lalu Lintas" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Pengaturan" @@ -1198,13 +1178,14 @@ msgstr "Tambahkan bagan pada grid" msgid "Please add at least one variable to the series" msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Tidak ada" @@ -1304,7 +1285,7 @@ msgstr "Ubah pengaturan" msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Judul Bagan" @@ -1331,7 +1312,6 @@ msgid "From general log" msgstr "Dari log umum" #: js/messages.php:150 -#| msgid "Loading logs" msgid "Analysing logs" msgstr "Menganalisis log" @@ -1371,7 +1351,6 @@ msgid "Jump to Log table" msgstr "Langsung ke tabel Log" #: js/messages.php:158 -#| msgid "No data" msgid "No data found" msgstr "Data tidak ditemukan" @@ -1392,7 +1371,7 @@ msgstr "Jelaskan hasil" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Waktu" @@ -1415,12 +1394,10 @@ msgid "Chart" msgstr "Bagan" #: js/messages.php:169 -#| msgid "Add chart" msgid "Edit chart" msgstr "Edit bagan" #: js/messages.php:170 -#| msgid "Series:" msgid "Series" msgstr "Seri" @@ -1490,18 +1467,16 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impor" #: js/messages.php:191 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Impor konfigurasi monitor" #: js/messages.php:192 -#| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Silahkan pilih berkas yang ingin anda impor" @@ -1549,7 +1524,7 @@ msgid "Cancel" msgstr "Batal" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Memproses" @@ -1627,17 +1602,14 @@ msgid "Show indexes" msgstr "Tampilkan indeks" #: js/messages.php:237 libraries/mult_submits.inc.php:350 -#| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Pemeriksaan kunci asing:" #: js/messages.php:238 libraries/mult_submits.inc.php:360 -#| msgid "Enabled" msgid "(Enabled)" msgstr "(Aktif)" #: js/messages.php:239 libraries/mult_submits.inc.php:360 -#| msgid "Disabled" msgid "(Disabled)" msgstr "(Tidak aktif)" @@ -1702,7 +1674,7 @@ msgstr "Sembunyikan kotak kueri" msgid "Show query box" msgstr "Tampilkan kotak kueri" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1715,7 +1687,7 @@ msgstr "Edit" msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1801,7 +1773,7 @@ msgstr "Isi titk data" msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Salin" @@ -1817,7 +1789,7 @@ msgstr "Segmen garis" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometri" @@ -2319,32 +2291,32 @@ msgstr "dalam sejam" msgid "per day" msgstr "per hari" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "File configuration yang ada (%s) tidak dapat di baca." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Perizinan yang salah pada file konfigurasi, sehingga tidak dapat ditulis!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Ukuran huruf" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Menaik" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2498,14 +2470,14 @@ msgstr "Jelajahi" msgid "Delete the matches for the %s table?" msgstr "Hapus yang cocok untuk %s tabel?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Hapus" @@ -2596,17 +2568,11 @@ msgstr "horisontal (judul diputar)" msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Judul setiap %s baris" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Urut berdasarkan kunci" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2633,93 +2599,93 @@ msgstr "Urut berdasarkan kunci" msgid "Options" msgstr "Opsi" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Teks parsial" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Teks penuh" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Kunci relasi" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Kolom tampilan relasi" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Tampilkan konten biner" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Tampilkan konten BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Tampilkan konten biner dalam HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Transformasi Browser" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Tutup" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat %" "sdokumentasi%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Pencarian dilakukan dalam %01.4f detik" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2728,8 +2694,8 @@ msgstr "Pencarian dilakukan dalam %01.4f detik" msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2740,45 +2706,45 @@ msgstr "Dengan pilihan:" msgid "Check All" msgstr "Pilih Semua" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspor" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Buat tampilan" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operasi hasil kueri" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Tampilan cetak" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Tampilan cetak (teks lengkap)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Tampilkan bagan" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Tautan tidak ditemukan" @@ -2857,38 +2823,38 @@ msgstr "Indeks belum ditentukan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Dipadatkan" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitas" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Penyortiran" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentar" @@ -2930,7 +2896,7 @@ msgstr "Gambarkan" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -3078,15 +3044,15 @@ msgstr[0] "%1$d baris ditambahkan." msgid "Error while creating PDF:" msgstr "Terjadi galat sewaktu membuat PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabel terakhir" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Tidak ada tabel terakhir" @@ -3333,7 +3299,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" @@ -3436,14 +3402,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3689,7 +3655,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3750,7 +3716,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Edit di tempat" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profil" @@ -4183,8 +4149,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi " -"[kbd]cookie[/kbd]" +"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4224,9 +4190,9 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" -"Menentukan jenis masukan yang dipakai untuk kolom CHAR dan VARCHAR; " -"[kbd]input[/kbd] - mengizinkan pembatasan panjang masukan, [kbd]textarea[/" -"kbd] - mengizinkan baris baru dalam kolom" +"Menentukan jenis masukan yang dipakai untuk kolom CHAR dan VARCHAR; [kbd]" +"input[/kbd] - mengizinkan pembatasan panjang masukan, [kbd]textarea[/kbd] - " +"mengizinkan baris baru dalam kolom" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4234,8 +4200,8 @@ msgstr "Pengeditan kolom CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4781,9 +4747,8 @@ msgstr "Judul halaman" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5567,11 +5532,11 @@ msgstr "Tabel markah" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" @@ -5636,8 +5601,8 @@ msgstr "Inang pengendali" #: libraries/config/messages.inc.php:391 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" @@ -5678,8 +5643,8 @@ msgstr "Sembunyikan basis data" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5745,8 +5710,8 @@ msgstr "Sandi untuk autentikasi config" #: libraries/config/messages.inc.php:412 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" @@ -5779,8 +5744,8 @@ msgstr "Porta server" #: libraries/config/messages.inc.php:418 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]" @@ -5794,8 +5759,8 @@ msgstr "Tabel yang baru digunakan" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5812,8 +5777,8 @@ msgstr "Perintah SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5843,8 +5808,8 @@ msgstr "Gunakan SSL" #: libraries/config/messages.inc.php:431 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" @@ -5869,8 +5834,8 @@ msgstr "Tabel kolom tampilan" #: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" @@ -5923,11 +5888,11 @@ msgstr "Statement untuk dilacak" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" @@ -5949,11 +5914,11 @@ msgstr "Buat versi secara otomatis" #: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" @@ -6151,8 +6116,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nama Pengguna" @@ -6559,7 +6524,7 @@ msgstr "Basis Data:" msgid "Table(s):" msgstr "Tabel:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Baris:" @@ -6608,8 +6573,8 @@ msgstr ", @TABLE@ akan menjadi nama tabel" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7139,8 +7104,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7156,7 +7121,7 @@ msgid "No data found for GIS visualization." msgstr "Data untuk visualisasi GIS tidak ditemukan." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memberikan hasil kosong (atau nol baris)." @@ -7279,11 +7244,11 @@ msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -7334,7 +7299,7 @@ msgstr "Tambahkan prefiks tabel" msgid "Add prefix" msgstr "Tambahkan prefiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7686,17 +7651,17 @@ msgid "Drop the database (DROP)" msgstr "Hapus basis data (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Struktur saja" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data saja" @@ -7859,11 +7824,11 @@ msgstr "Selamat Datang di %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan " -"%1$ssetup script%2$s untuk membuatnya." +"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan %1" +"$ssetup script%2$s untuk membuatnya." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8121,7 +8086,7 @@ msgstr "Masukkan nama kolom pada baris pertama" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8129,7 +8094,7 @@ msgstr "Inang" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8147,7 +8112,7 @@ msgstr "Versi PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9251,7 +9216,7 @@ msgstr "Atribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9416,7 +9381,7 @@ msgid "Library" msgstr "Pustaka" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versi" @@ -9887,8 +9852,8 @@ msgstr "Ikhtisar pengguna" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " @@ -9904,63 +9869,260 @@ msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d detik" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d menit" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistik log" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Rentang waktu pilihan:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Penganalisis kueri" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instruksi Pemantauan" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Harap catat:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Tambahkan bagan" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Bagan bawaan" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variabel status" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Pilih seri:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Biasa dipantau" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "atau masukkan nama variabel:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Tampilkan sebagai nilai diferensial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Terapkan pemisah" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Sertakan satuan kepada nilai data" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Tambahkan seri ini" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Bersihkan seri" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Seri pada Bagan:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Jalankan Pemantauan" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Petunjuk/Penyiapan" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Selesai mengatur ulang/mengedit bagan" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Aktifkan penyorotan" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Laju penyegaran" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Kolom bagan" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Pengaturan bagan" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Kembalikan nilai bawaan" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Hasil SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Diciptakan oleh" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Besar pertumbuhan berkas data" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Lainnya" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Mulai" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total waktu:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Waktu" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Tutup" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Waktu" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Markahi kueri SQL ini" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Judul" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Izinkan semua pengguna untuk mengakses markah ini" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9981,10 +10143,6 @@ msgstr "Bersihkan" msgid "Bookmark this SQL query:" msgstr "Markahi kueri SQL ini" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Izinkan semua pengguna untuk mengakses markah ini" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Ganti markah bernama sama yang ada" @@ -10123,7 +10281,7 @@ msgstr "Pilih tabel berbeban tambahan" msgid "Sort" msgstr "Urutan" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Tidak ada" @@ -10283,7 +10441,7 @@ msgstr "Efektif" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s berhasil diubah" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Galat kueri" @@ -10442,7 +10600,7 @@ msgstr "Galat pada arsip ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" @@ -10500,7 +10658,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Pembuatan halaman gagal" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10560,43 +10718,43 @@ msgstr "Agregasi" msgid "Active options" msgstr "Opsi aktif" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Halaman telah dibuat" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Pembuatan halaman gagal" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Halaman" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Impor dari halaman terpilih" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Ekspor ke halaman terpilih" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Buat halaman dan ekspor ke dalamnya" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nama halaman baru: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Ekspor/Impor dengan skala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "direkomendasikan" @@ -10626,7 +10784,7 @@ msgstr "Relasi internal ditambahkan" msgid "Relation deleted" msgstr "Relasi dihapus" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Galat sewaktu menyimpan koordinat untuk Desainer." @@ -11055,188 +11213,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instruksi Pemantauan" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Harap catat:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Tambahkan bagan" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Bagan bawaan" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variabel status" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Pilih seri:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Biasa dipantau" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "atau masukkan nama variabel:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Tampilkan sebagai nilai diferensial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Terapkan pemisah" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Sertakan satuan kepada nilai data" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Tambahkan seri ini" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Bersihkan seri" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Seri pada Bagan:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistik log" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Rentang waktu pilihan:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Penganalisis kueri" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d detik" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d menit" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Jalankan Pemantauan" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Petunjuk/Penyiapan" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Selesai mengatur ulang/mengedit bagan" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Aktifkan penyorotan" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Laju penyegaran" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Kolom bagan" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Pengaturan bagan" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Kembalikan nilai bawaan" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12157,8 +12133,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12203,26 +12179,26 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus." msgid "Wrong data" msgstr "Data salah" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan." -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Markah %s dibuat" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Tampilkan sebagai kode PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL tervalidasi" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12235,21 +12211,11 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Markahi kueri SQL ini" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Judul" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data" @@ -12481,34 +12447,34 @@ msgstr "Pilih kolom untuk ditampilkan" msgid "No column selected." msgstr "Tidak ada baris yang dipilih" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Laporan pelacakan untuk table '%s'" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Perintah SQL dieksekusi." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12516,116 +12482,116 @@ msgstr "" "Anda dapat mengeksekusi dump dengan membuat dan menggunakan basis data " "sementara. Harap pastikan Anda mempunyai hak untuk melakukannya." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versi snapshot %s (kode SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Pelacakan definisi data berhasil dihapus" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Pelacakan manipulasi data berhasil dihapus" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Hapus baris pelacakan data dari laporan" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Tidak ada data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Tanggal" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Pernyataan definisi data" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Penyataan manipulasi data" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Dump SQL (unduhan berkas)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Dump SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Pilihan ini akan mengganti table dan data isi table" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Eksekusi SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Ekspor sebagai %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Tunjukkan Versi" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Nonaktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Nonaktifkan sekarang" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktifkan sekarang" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Buat versi %s dari %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Lacak definisi data dari pernyataan berikut:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Lacak manipulasi data dari pernyataan berikut:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Buat versi" @@ -12991,8 +12957,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13118,8 +13084,8 @@ msgstr "" #| "Rate of temporary tables being written to disk: %s, this value should be " #| "less than 1 per hour" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 " "per jam" @@ -13809,13 +13775,12 @@ msgstr "" "Hal ini biasanya cukup dengan mengatur {innodb_log_file_size} ke 25%% dari " "ukuran {innodb_buffer_pool_size}. {innodb_log_file_size} yang terlalu besar, " "dapat memperlambat waktu pemulihan ketika database mengalami kerusakan " -"parah. Lihat Artikel ini . Anda perlu " +"parah. Lihat Artikel ini . Anda perlu " "shutdown server, menghapus file log InnoDB, menetapkan nilai baru di my.cnf, " "mulai server, kemudian periksa log kesalahan jika semuanya berjalan baik-" -"baik saja. Lihat juga entri blog ini " +"baik saja. Lihat juga entri blog ini " #: libraries/advisory_rules.txt:448 #, php-format @@ -13880,6 +13845,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert diatur ke 0" +#, fuzzy +#~| msgid "Headers every %s rows" +#~ msgid "Headers every %s rows" +#~ msgstr "Judul setiap %s baris" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14117,9 +14087,9 @@ msgstr "concurrent_insert diatur ke 0" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Mengaktifkan ini memungkinkan halaman yang terletak pada domain yang " -#~ "berbeda untuk memanggil phpMyAdmin di dalam frame, dan merupakan " -#~ "[strong]lubang keamanan[/strong] potensial yang memungkinkan serangan " -#~ "scripting lintas-frame" +#~ "berbeda untuk memanggil phpMyAdmin di dalam frame, dan merupakan [strong]" +#~ "lubang keamanan[/strong] potensial yang memungkinkan serangan scripting " +#~ "lintas-frame" #~ msgid "Allow third party framing" #~ msgstr "Izinkan pembingkaian pihak ketiga" diff --git a/po/it.po b/po/it.po index a11e117596..e5c507236b 100644 --- a/po/it.po +++ b/po/it.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Italian \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Cerca" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Cerca" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Esegui" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Chiave" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descrizione" @@ -110,7 +110,7 @@ msgstr "" "Il file %s non è disponibile sul sistema, visita www.phpmyadmin.net per " "maggiori informazioni." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." @@ -140,7 +140,7 @@ msgstr "Commenti alla tabella" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Colonna" @@ -163,7 +163,7 @@ msgstr "Colonna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipo" @@ -180,7 +180,7 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -195,7 +195,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Predefinito" @@ -237,9 +237,9 @@ msgstr "Commenti" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "No" @@ -264,9 +264,9 @@ msgstr "No" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Sì" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabella" @@ -400,7 +400,7 @@ msgstr "Tabelle monitorate" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Database" @@ -408,17 +408,17 @@ msgstr "Database" msgid "Last version" msgstr "Ultima versione" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Creato" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Aggiornato" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stato" @@ -431,7 +431,7 @@ msgstr "Stato" msgid "Action" msgstr "Azione" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Mostra" @@ -447,11 +447,11 @@ msgstr "Cancella dati di tracciamento per questa tabella" msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "attivo" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "non attivo" @@ -459,11 +459,11 @@ msgstr "non attivo" msgid "Versions" msgstr "Versioni" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Rapporto tracking" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snapshot della struttura" @@ -625,8 +625,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla %sdocumentazione%s se desideri aggirare questo limite." @@ -679,7 +679,7 @@ msgstr "" "Non è stato possibile caricare i plugin di importazione, controlla la tua " "installazione!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" @@ -706,7 +706,7 @@ msgstr "" "evidenzia che il limite di tempo impostato nella configurazione è troppo " "basso per consentire a phpMyAdmin di terminare l'operazione." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -935,10 +935,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: " -"%sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" +"sdocumentation%s per possibili problemi." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." @@ -947,7 +947,7 @@ msgstr "I comandi \"DROP DATABASE\" sono disabilitati." msgid "Do you really want to execute \"%s\"?" msgstr "Sei sicuro di voler eseguire \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Stai per DISTRUGGERE COMPLETAMENTE un intera base di dati!" @@ -1031,8 +1031,8 @@ msgstr "Ricaricamento privilegi" msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Chiudi" @@ -1160,13 +1160,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1205,7 +1205,7 @@ msgid "Traffic" msgstr "Traffico" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Impostazioni" @@ -1225,13 +1225,14 @@ msgstr "Aggiungi diagramma alla griglia" msgid "Please add at least one variable to the series" msgstr "Aggiungi almeno una variabile alla serie" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nessuno" @@ -1331,7 +1332,7 @@ msgstr "Modifica impostazioni" msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Titolo del diagramma" @@ -1421,7 +1422,7 @@ msgstr "Spiega l'output" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tempo" @@ -1519,7 +1520,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1578,7 +1579,7 @@ msgid "Cancel" msgstr "Annulla" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Caricamento" @@ -1730,7 +1731,7 @@ msgstr "Nascondi riquadro query SQL" msgid "Show query box" msgstr "Mostra riquadro query SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1743,7 +1744,7 @@ msgstr "Modifica" msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1831,7 +1832,7 @@ msgstr "Contenuto del punto" msgid "Ignore" msgstr "Ignora" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copia" @@ -1848,7 +1849,7 @@ msgstr "Linestring" msgid "Polygon" msgstr "Poligono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2334,33 +2335,33 @@ msgstr "all'ora" msgid "per day" msgstr "al giorno" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "File di configurazione esistente (%s) non è leggibile." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permessi incorretti sul file di configurazione, non deve essere scrivibile " "da tutti!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Dimensione font" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Crescente" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2514,14 +2515,14 @@ msgstr "Mostra" msgid "Delete the matches for the %s table?" msgstr "Eliminare le corrispondenze relative alla tabella %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Elimina" @@ -2612,16 +2613,11 @@ msgstr "orizzontale (headers ruotati)" msgid "vertical" msgstr "verticale" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Intestazioni ogni %s righe" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Ordina per chiave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2648,91 +2644,91 @@ msgstr "Ordina per chiave" msgid "Options" msgstr "Opzioni" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Testi parziali" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Testi completi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Chiave relazionale" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Campo di visualizzazione relazionale" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Mostra contenuti binari" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Mostra contenuti BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostra contenuti binari come esadecimali" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Nascondi le trasformazioni del browser" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Rimuovi" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Può essere approssimato. Vedi [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "nella query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Mostrando le righe" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "totale" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2741,8 +2737,8 @@ msgstr "La query ha impiegato %01.4f sec" msgid "With selected:" msgstr "Se selezionati:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2753,45 +2749,45 @@ msgstr "Se selezionati:" msgid "Check All" msgstr "Seleziona tutti" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esporta" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Crea vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Visualizza per stampa" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link non trovato" @@ -2868,38 +2864,38 @@ msgstr "Nessun indice definito!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indici" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unica" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Compresso" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalità" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Codifica caratteri" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Commenti" @@ -2941,7 +2937,7 @@ msgstr "Vista" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struttura" @@ -3086,15 +3082,15 @@ msgstr[1] "%1$d righe inserite." msgid "Error while creating PDF:" msgstr "Si é verificato un errore durante la creazione del PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Impossibile salvare la tabella recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabelle recenti" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Non ci sono tabelle recenti" @@ -3345,7 +3341,7 @@ msgid "Maximum rows to plot" msgstr "Massimo numero di righe da visualizzare" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" @@ -3446,14 +3442,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3696,7 +3692,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3757,7 +3753,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -4237,8 +4233,8 @@ msgstr "Modifica dei campi CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4646,9 +4642,9 @@ 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 "" -"Ordinamento degli elementi nel menu a tendina delle chiavi esterne; " -"[kbd]content[/kbd] sono i dati di rifereimento, [kbd]id[/kbd] é il valore " -"della chiave" +"Ordinamento degli elementi nel menu a tendina delle chiavi esterne; [kbd]" +"content[/kbd] sono i dati di rifereimento, [kbd]id[/kbd] é il valore della " +"chiave" #: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" @@ -4790,9 +4786,8 @@ msgstr "Titoli delle pagine" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Specifica il testo per la barra del titolo. Puoi consultare la " "[doc@cfg_TitleTable]documentazione[/doc] per vedere delle stringhe che " @@ -5603,8 +5598,8 @@ msgid "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -"Il percorso per il file di configurazione per [a@http://swekey." -"com]autenticazione hardware SweKey[/a] (not salvata nella cartella document " +"Il percorso per il file di configurazione per [a@http://swekey.com]" +"autenticazione hardware SweKey[/a] (not salvata nella cartella document " "root; percorso consigliato: /etc/swekey.conf)" #: libraries/config/messages.inc.php:373 @@ -5638,11 +5633,11 @@ msgstr "Tabella dei segnalibri" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Lascia vuoto per diattivare i commenti/tipi mime per i campi, consigliato: " "[kbd]pma_column_info[/kbd]" @@ -5724,8 +5719,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Lascia vuoto disattivare il supporto per Designer, consigliato: " -"[kbd]pma_designer_coords[/kbd]" +"Lascia vuoto disattivare il supporto per Designer, consigliato: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5736,9 +5731,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Maggiori informazioni su [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/" -"a]" +"Maggiori informazioni su [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5765,8 +5759,8 @@ msgstr "Nascondi i database" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5848,8 +5842,8 @@ msgstr "Parola chiave per config auth" 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]" +"Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5900,8 +5894,8 @@ msgstr "Tabella utilizzata recentemente" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Lascia vuoto per disabilitare il supporto per [a@http://wiki.phpmyadmin.net/" "pma/relation]relation-links[/a], consigliato: [kbd]pma_relation[/kbd]" @@ -5920,8 +5914,8 @@ msgstr "Commando SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di " "autenticazione[/a] per un esempio" @@ -5961,8 +5955,8 @@ 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]" +"Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6050,11 +6044,11 @@ msgstr "Istruzioni da monitorare" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" +#| "Leave blank for no SQL query tracking support, suggested: [kbd]" +#| "pma_tracking[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Lascia vuoto per disabilitare il supporto per il monitoriaggio delle query " "SQL, consigliato: [kbd]pma_tracking[/kbd]" @@ -6078,11 +6072,11 @@ msgstr "Crea versioni automaticamente" #: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle preferenze degli " "utenti nel database, consigliato: [kbd]pma_userconfig[/kbd]" @@ -6122,10 +6116,10 @@ msgid "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -"Si prega di notare che l'attivazione di questo non ha effetto con " -"[kbd]config[/kbd] la modalità di autenticazione perché la password è salvata " -"nel file di configurazione; questo non limita la capacità di eseguire lo " -"stesso comando direttamente" +"Si prega di notare che l'attivazione di questo non ha effetto con [kbd]config" +"[/kbd] la modalità di autenticazione perché la password è salvata nel file " +"di configurazione; questo non limita la capacità di eseguire lo stesso " +"comando direttamente" #: libraries/config/messages.inc.php:458 msgid "Show password change form" @@ -6297,11 +6291,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Se hai un nome utente personalizzato, specificalo qui (il predefinito é " -"[kbd]anonymous[/kbd])" +"Se hai un nome utente personalizzato, specificalo qui (il predefinito é [kbd]" +"anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nome utente" @@ -6464,8 +6458,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Abilita la compressione [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] per le operazioni di importazione ed esportazione" +"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:530 msgid "ZIP" @@ -6732,7 +6726,7 @@ msgstr "Database:" msgid "Table(s):" msgstr "Tabelle:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Righe:" @@ -6781,8 +6775,8 @@ msgstr ", @TABLE@ diventerá il nome della tabella" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -7350,8 +7344,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -7369,7 +7363,7 @@ msgid "No data found for GIS visualization." msgstr "Nessun data trovato per la visualizzazione GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." @@ -7491,11 +7485,11 @@ msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -7546,7 +7540,7 @@ msgstr "Aggiungi un prefisso alla tabella" msgid "Add prefix" msgstr "Aggiungi prefisso" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" @@ -7881,17 +7875,17 @@ msgid "Drop the database (DROP)" msgstr "Cancella il database (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Solo struttura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struttura e dati" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Solo dati" @@ -8054,8 +8048,8 @@ msgstr "Benvenuto in %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -8318,7 +8312,7 @@ msgstr "Metti i nomi dei campi nel primo rigo" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8326,7 +8320,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8344,7 +8338,7 @@ msgstr "Versione PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8426,8 +8420,8 @@ msgid "" "names formed with special characters or keywords)" msgstr "" "Racchiudi i nomi dei campi e delle tabelle in virgolette ` (Protegge i " -"nomi dei campi e tabelle che contengono caratteri speciali or parole " -"chiave)" +"nomi dei campi e tabelle che contengono caratteri speciali or parole chiave)" +"" #: libraries/plugins/export/ExportSql.class.php:295 #, fuzzy @@ -9521,7 +9515,7 @@ msgstr "Attributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 #, fuzzy msgid "Extra" msgstr "Extra" @@ -9687,7 +9681,7 @@ msgid "Library" msgstr "Libreria" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versione" @@ -10151,8 +10145,8 @@ msgstr "Vista d'insieme degli utenti" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " @@ -10167,63 +10161,289 @@ msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d secondo" +msgstr[1] "%d secondi" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minuti" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Registra statistiche" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Intervallo di tempo selezionato:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " +"raggruppamento" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Scegli il log dal quale generare le statistiche." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "I risultati verranno raggruppati secondo il testo di query." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analyzer della query" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Istruzioni per monitoraggio" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Il Monitor phpMyAdmin può assistervi nell'ottimizzazione della " +"configurazione del server e per il tracciamento di query intensive. Per " +"queste ultime occorrerà settare log_output a 'TABLE' e abilitare " +"slow_query_log oppure general_log. Notate comunque che general_log produce " +"molti dati e aumenta il carico del server fino al 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Purtroppo il vostro server di Database non supporta il log su tabella che è " +"un requisito per analizzare i log del database con phpMyAdmin. Il log su " +"tabella è supportato dalla versione di MySQL 5.1.6 in su. In ogni caso " +"potete ancora utilizzare le funzionalità di generazione dei grafici del " +"server." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilizzo del monitor:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Il vostro browser aggiornerà tutti i grafici visualizzati a intervalli " +"regolari. Potete aggiungere grafici e cambiare la frequenza di aggiornamento " +"sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " +"dentellata su ogni grafico." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Per visualizzare le query dai log, seleziona l'intervallo di tempo rilevante " +"sui grafici tenendo premuto il tasto sinistro del mouse e muovendosi sul " +"grafico. Una volta data conferma, verrà caricata una tabella di query " +"raggruppate nella quale potete cliccare su ogni comando SELECT che appare " +"per l'analisi successiva." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Nota:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Abilitare il general_log può incrementare il carico del server del 5-15%. " +"Tenete presente che la generazione delle statistiche a partire dai log è un " +"compito intensivo per cui si consiglia di selezionare solo un intervallo " +"temporale piccolo e disabilitare il general_log e svuotare la sua tabella." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Aggiungi grafico" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Valori predefiniti del grafico" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variabili di stato" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Seleziona serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Monitorate di solito" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "or scrivi il nome di una variabile:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Visualizzare come valore differenziale" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Applica un divisore" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Aggiungi un unitá ai valori dei dati" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Aggiungi questa serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Cancella la serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serie del grafico:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Avvia monitoraggio" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Istruzioni/Configurazione" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Ho finito di modificare/muovere i grafici" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Abilita evidenziamento" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Ritmo di aggiornamenti" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Numero di grafici per rigo" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Disposizione dei grafici" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"La configurazione dei grafici è memorizzata nella memoria locale dei " +"browser. Potreste voler esportarla se avete una configurazione complicata." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Ripristina i valori predefiniti" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Risultato SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generato da" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Dimensione incremento del file dei dati" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Altre" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Inizio" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Tempo totale:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Chiudi" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Aggiungi ai preferiti questa query SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etichetta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permetti ad ogni utente di accedere a questo bookmark" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10244,10 +10464,6 @@ msgstr "Cancella" msgid "Bookmark this SQL query:" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permetti ad ogni utente di accedere a questo bookmark" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Sostituisci segnalibro esistente se con lo stesso nome" @@ -10389,7 +10605,7 @@ msgstr "Controllo addizionale" msgid "Sort" msgstr "Ordinamento" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nessuno" @@ -10548,7 +10764,7 @@ msgstr "Effettivo" msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Errore nella query" @@ -10710,7 +10926,7 @@ msgstr "Errore nell'archivio ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" @@ -10766,7 +10982,7 @@ msgstr "Contrai/Espandi" msgid "Toggle relation lines" msgstr "Attiva le linee della relazione" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/esporta le coordinate per PDF schema" @@ -10826,43 +11042,43 @@ msgstr "Globale" msgid "Active options" msgstr "Opzioni attive" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "La pagina è stata creata" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Creazione della pagina fallita" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Pagina" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importa dalla pagina selezionata" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Esporta alla pagina selezionata" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crea una nuova pagina ed esportala" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nome per la nuova pagina: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Importa/esporta alla dimensione" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "raccomandato" @@ -10892,7 +11108,7 @@ msgstr "Aggiunte relazioni internet" msgid "Relation deleted" msgstr "Relazione cancellata" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Errore nel salvare le coordinate per il Designer." @@ -11348,217 +11564,6 @@ msgstr "" "ripristinare il cambiamento se non si riscontra un miglioramento chiaramente " "misurabile." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Istruzioni per monitoraggio" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Il Monitor phpMyAdmin può assistervi nell'ottimizzazione della " -"configurazione del server e per il tracciamento di query intensive. Per " -"queste ultime occorrerà settare log_output a 'TABLE' e abilitare " -"slow_query_log oppure general_log. Notate comunque che general_log produce " -"molti dati e aumenta il carico del server fino al 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Purtroppo il vostro server di Database non supporta il log su tabella che è " -"un requisito per analizzare i log del database con phpMyAdmin. Il log su " -"tabella è supportato dalla versione di MySQL 5.1.6 in su. In ogni caso " -"potete ancora utilizzare le funzionalità di generazione dei grafici del " -"server." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilizzo del monitor:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Il vostro browser aggiornerà tutti i grafici visualizzati a intervalli " -"regolari. Potete aggiungere grafici e cambiare la frequenza di aggiornamento " -"sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " -"dentellata su ogni grafico." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Per visualizzare le query dai log, seleziona l'intervallo di tempo rilevante " -"sui grafici tenendo premuto il tasto sinistro del mouse e muovendosi sul " -"grafico. Una volta data conferma, verrà caricata una tabella di query " -"raggruppate nella quale potete cliccare su ogni comando SELECT che appare " -"per l'analisi successiva." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Nota:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Abilitare il general_log può incrementare il carico del server del 5-15%. " -"Tenete presente che la generazione delle statistiche a partire dai log è un " -"compito intensivo per cui si consiglia di selezionare solo un intervallo " -"temporale piccolo e disabilitare il general_log e svuotare la sua tabella." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Aggiungi grafico" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Valori predefiniti del grafico" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variabili di stato" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Seleziona serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Monitorate di solito" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "or scrivi il nome di una variabile:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Visualizzare come valore differenziale" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Applica un divisore" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Aggiungi un unitá ai valori dei dati" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Aggiungi questa serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Cancella la serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serie del grafico:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Registra statistiche" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Intervallo di tempo selezionato:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " -"raggruppamento" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Scegli il log dal quale generare le statistiche." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "I risultati verranno raggruppati secondo il testo di query." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analyzer della query" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d secondo" -msgstr[1] "%d secondi" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minuti" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Avvia monitoraggio" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Istruzioni/Configurazione" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Ho finito di modificare/muovere i grafici" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Abilita evidenziamento" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Ritmo di aggiornamenti" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Numero di grafici per rigo" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Disposizione dei grafici" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"La configurazione dei grafici è memorizzata nella memoria locale dei " -"browser. Potreste voler esportarla se avete una configurazione complicata." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Ripristina i valori predefiniti" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12361,9 +12366,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Prego, crea una cartella scrivibile dal web server [em]config[/em] nella " -"cartella principale di phpMyAdmin come descritto nella " -"[doc@setup_script]documentazione[/doc]. Altrimenti potrai solo scaricarlo o " -"visualizzarlo." +"cartella principale di phpMyAdmin come descritto nella [doc@setup_script]" +"documentazione[/doc]. Altrimenti potrai solo scaricarlo o visualizzarlo." #: setup/frames/index.inc.php:60 msgid "" @@ -12617,10 +12621,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - " -"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia" -"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se " -"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " +"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %" +"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. " +"Comunque, la protezione a base di IP potrebbe non essere affidabile se il " +"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " "connessi." #: setup/lib/index.lib.php:316 @@ -12629,14 +12633,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " -"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" +"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12681,24 +12685,24 @@ msgstr "" msgid "Wrong data" msgstr "Dati errati" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Segnalibro non creato" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Visualizzo comel codice PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12711,21 +12715,11 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Aggiungi ai preferiti questa query SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etichetta" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Nessun dato da visualizzare" @@ -12948,31 +12942,31 @@ msgstr "Scegli il campo da mostrare" msgid "No column selected." msgstr "Nessuna riga selezionata" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Report di monitoraggio per la tabella `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versione %1$s creata, monitoraggio attivato per %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitoraggio per %1$s é disattivato dalla version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitoraggio di %1$s é attivo dalla version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instruzione SQL eseguita." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12980,114 +12974,114 @@ msgstr "" "Puoi eseguire il dump creando ed utilizzando un database temporaneo. Prego " "assicurati che hai i corretti permessi per effettuare queste azioni." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Commenta le linee seguenti se non ne hai bisogno." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Istruzione SQL esportata. Copia il dump o eseguilo." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versione %s dello snapshot (codice SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Le definizioni dei dati di monitoraggio eliminati con successo" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" "Le manipolazioni dei dati di monitoraggio sono state cancellate con successo" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Instruzioni per il monitoraggio" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s con date dal %2$s al %3$s dell'utente %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Cancella dati di tracciamento dal report" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nessun dato" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instruzione di definizione dei dati" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instruzione di manipolazione dei dati" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Dump SQL (scarica il file)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Dump SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Questa opzione sostituirà la tua tabella e i dati contenuti." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Esecuzione SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Esporta come %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostra le versioni" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Disattiva il tracking per %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Disattiva ora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Attiva il tracking per %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Attiva ora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crea versione %1$s di %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Monitora le istuzioni di definizione dei dati:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Monitora le istruzioni di manipolazione dei dati:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crea versione" @@ -13507,12 +13501,12 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Il rapporto corrente tra la memoria libera nella cache delle query e la " -"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra " -"l'80%%" +"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra l'80%" +"%" #: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" @@ -13670,8 +13664,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% di tutti gli ordinamenti causano la creazione di tabelle temporanee, " "questo valore dovrebbe essere inferiore al 10%%." @@ -14479,6 +14473,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Intestazioni ogni %s righe" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14775,9 +14772,9 @@ msgstr "concurrent_insert è impostato a 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Quando questo é impostato a [kbd]nested[/kbd], l'alias del nome della " #~ "tabella è utilizzato solo per dividere/nidificare le tabelle in accordo " @@ -14981,8 +14978,8 @@ msgstr "concurrent_insert è impostato a 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database " -#~ "%s?" +#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %" +#~ "s?" #~ msgid "Unknown error while uploading." #~ msgstr "Errore sconosciuto durante il caricamento del file." diff --git a/po/ja.po b/po/ja.po index abb2960d0b..702ee73dc2 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 15:08+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Japanese \n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "検索" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "検索" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "実行" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "キー名" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "説明" @@ -109,7 +109,7 @@ msgstr "" "ファイル %s は、このシステムでは使用できません。詳細については www." "phpmyadmin.net をご覧ください。" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" @@ -139,7 +139,7 @@ msgstr "テーブルのコメント" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "カラム" @@ -162,7 +162,7 @@ msgstr "カラム" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "データ型" @@ -179,7 +179,7 @@ msgstr "データ型" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "NULL" @@ -194,7 +194,7 @@ msgstr "NULL" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "デフォルト値" @@ -236,9 +236,9 @@ msgstr "コメント" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "いいえ" @@ -263,9 +263,9 @@ msgstr "いいえ" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "はい" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "テーブル" @@ -398,7 +398,7 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "データベース" @@ -406,17 +406,17 @@ msgstr "データベース" msgid "Last version" msgstr "最後の世代" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "作成日時" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "更新日時" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "状態" @@ -429,7 +429,7 @@ msgstr "状態" msgid "Action" msgstr "操作" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "表示" @@ -445,11 +445,11 @@ msgstr "このテーブルに対しての追跡データを削除する" msgid "Drop" msgstr "削除" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "アクティブ" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "非アクティブ" @@ -457,11 +457,11 @@ msgstr "非アクティブ" msgid "Versions" msgstr "世代" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "追跡レポート" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "構造のスナップショット" @@ -623,11 +623,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください。" @@ -662,8 +662,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "インポートするデータを受信できませんでした。ファイル名が送信されていないか、" -"ファイルサイズが PHP の設定で許可された最大値を超えています。" -"[doc@faq1-16]FAQ 1.16[/doc] をご覧ください。" +"ファイルサイズが PHP の設定で許可された最大値を超えています。[doc@faq1-16]" +"FAQ 1.16[/doc] をご覧ください。" #: import.php:447 msgid "" @@ -677,7 +677,7 @@ msgstr "" "インポートプラグインが読み込めません。正しくインストールされているか確認して" "ください!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" @@ -703,7 +703,7 @@ msgstr "" "ただし、最後に実行したときはまったくデータを解析できませんでした。通常、PHP " "の時間制限を伸ばさない限りこのデータのインポートはできません。" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -931,7 +931,7 @@ msgstr "" "Suhosin が稼働しているため問題が発生する可能性があります。詳しくは%sドキュメ" "ント%sをご覧ください。" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています。" @@ -940,7 +940,7 @@ msgstr "DROP DATABASE 文は無効にされています。" msgid "Do you really want to execute \"%s\"?" msgstr "「%s」を本当に実行しますか?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" @@ -1025,8 +1025,8 @@ msgstr "特権を再読み込み" msgid "Removing Selected Users" msgstr "選択したユーザを削除する" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "閉じる" @@ -1152,13 +1152,13 @@ msgstr "バイト" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1197,7 +1197,7 @@ msgid "Traffic" msgstr "トラフィック" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "設定" @@ -1217,13 +1217,14 @@ msgstr "モニタリンググラフを追加する" msgid "Please add at least one variable to the series" msgstr "少なくとも1つの系列を追加してください" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "なし" @@ -1323,7 +1324,7 @@ msgstr "設定の変更" msgid "Current settings" msgstr "現在の設定" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "グラフの題名" @@ -1410,7 +1411,7 @@ msgstr "EXPLAIN の結果" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "時間" @@ -1507,7 +1508,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" @@ -1564,7 +1565,7 @@ msgid "Cancel" msgstr "キャンセル" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "読み込んでいます" @@ -1714,7 +1715,7 @@ msgstr "クエリボックスを隠す" msgid "Show query box" msgstr "クエリボックスを表示" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1727,7 +1728,7 @@ msgstr "編集" msgid "No rows selected" msgstr "行が選択されていません" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1811,7 +1812,7 @@ msgstr "プロット点におけるデータ内容" msgid "Ignore" msgstr "無視" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "コピー" @@ -1827,7 +1828,7 @@ msgstr "線分" msgid "Polygon" msgstr "ポリゴン" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "幾何データ" @@ -2323,33 +2324,33 @@ msgstr "/ 時" msgid "per day" msgstr "/ 日" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "設定ファイル (%s) は存在しますが、読み込むことができません。" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "設定ファイルのパーミッションが正しくありません。書き込み可能になっていませ" "ん!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "フォントサイズ" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "昇順" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2504,14 +2505,14 @@ msgstr "表示" msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "削除" @@ -2602,17 +2603,11 @@ msgstr "水平 (縦ヘッダ)" msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "%s 行毎にヘッダを表示" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "キーでソート" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2639,89 +2634,89 @@ msgstr "キーでソート" msgid "Options" msgstr "オプション" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "部分テキスト" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "全文" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "リレーションキー" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "リレーション表示カラム" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "バイナリの内容を表示する" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB の内容を表示する" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "バイナリの内容を 16 進数で表示する" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "ブラウザ変換機能を隠す" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "空間データをテキストで表示" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "空間データをバイナリで表示" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "停止" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] をご覧ください" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "行/クエリ" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "行の表示" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "合計" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2730,8 +2725,8 @@ msgstr "クエリの実行時間 %01.4f 秒" msgid "With selected:" msgstr "チェックしたものを:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2742,45 +2737,45 @@ msgstr "チェックしたものを:" msgid "Check All" msgstr "すべてチェックする" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "エクスポート" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "ビューを作成する" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "印刷用画面" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "空間情報のデータを視覚化する" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -2861,38 +2856,38 @@ msgstr "インデックスが定義されていません!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "インデックス" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "圧縮" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "一意な値の数" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "照合順序" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "コメント" @@ -2934,7 +2929,7 @@ msgstr "ビュー" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "構造" @@ -3076,15 +3071,15 @@ msgstr[0] "%1$d 行挿入しました。" msgid "Error while creating PDF:" msgstr "PDF を作成中にエラーが発生しました:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "最近使用したテーブルが保存できません" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "最近使用したテーブル" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "最近使用したテーブルはありません" @@ -3327,7 +3322,7 @@ msgid "Maximum rows to plot" msgstr "プロットする結果の最大数" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "参照されている値を表示する" @@ -3434,20 +3429,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、" "1.175494351E-38 から 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から " -"-2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" +"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から -" +"2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" "+308" #: libraries/Types.class.php:312 @@ -3720,7 +3715,7 @@ msgstr "列挙型、定義しておいた列挙リストより値を取ること msgid "Max: %s%s" msgstr "最長: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3781,7 +3776,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "インライン" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "プロファイリング" @@ -4256,8 +4251,8 @@ msgstr "CHAR 系カラムの編集" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "構文の色分けや行番号の付加といった分かりやすいエディタ ([a@http://codemirror." "net/]CodeMirror[/a]) を、SQL クエリの編集の際に使用します。" @@ -4808,9 +4803,8 @@ msgstr "ページタイトル" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "ブラウザのタイトルバーのテキストの指定を行います。使用可能な特別な埋め込み変" "数は[doc@cfg_TitleTable]ドキュメント[/doc]を参照してください。" @@ -5639,14 +5633,14 @@ msgstr "ブックマークテーブル" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。" -"[kbd]pma_column_info[/kbd] としておくのがいいでしょう。" +"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]" +"pma_column_info[/kbd] としておくのがいいでしょう。" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5763,8 +5757,8 @@ msgstr "非表示にするデータベース" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5900,8 +5894,8 @@ msgstr "最近使用したテーブル" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな" "い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。" @@ -5920,8 +5914,8 @@ msgstr "SHOW DATABASES コマンド" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]を" "参照してください。" @@ -5977,8 +5971,8 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。" -"[kbd]pma_table_info[/kbd] としておくのがいいでしょう。" +"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]" +"pma_table_info[/kbd] としておくのがいいでしょう。" #: libraries/config/messages.inc.php:434 msgid "Display columns table" @@ -6047,11 +6041,11 @@ msgstr "追跡するコマンド" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" +#| "Leave blank for no SQL query tracking support, suggested: [kbd]" +#| "pma_tracking[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] " "としておくのがいいでしょう。" @@ -6075,11 +6069,11 @@ msgstr "世代の自動作成" #: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/" "kbd] としておくのがいいでしょう。" @@ -6284,8 +6278,8 @@ msgstr "" "ユーザ名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/" "kbd])。" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "ユーザ名" @@ -6446,8 +6440,8 @@ msgid "" "for import and export operations" msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" -"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC" -"%E3%83%9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。" +"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC%E3%83%" +"9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -6707,7 +6701,7 @@ msgstr "データベース:" msgid "Table(s):" msgstr "テーブル:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "行:" @@ -6756,8 +6750,8 @@ msgstr "、@TABLE@ はテーブル名に" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -7317,8 +7311,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -7336,7 +7330,7 @@ msgid "No data found for GIS visualization." msgstr "視覚化できる空間情報がありません。" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" @@ -7458,11 +7452,11 @@ msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -7513,7 +7507,7 @@ msgstr "テーブル接頭辞の追加" msgid "Add prefix" msgstr "追加する接頭辞" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "以下のクエリを本当に実行しますか?" @@ -7863,17 +7857,17 @@ msgid "Drop the database (DROP)" msgstr "データベースを削除する (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "構造のみ" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "構造とデータ" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "データのみ" @@ -8036,11 +8030,11 @@ msgstr "%s へようこそ" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" -"ト%2$s を利用して設定ファイルを作成してください。" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" +"$s を利用して設定ファイルを作成してください。" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8297,7 +8291,7 @@ msgstr "1 行目にカラム名を追加する" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8305,7 +8299,7 @@ msgstr "ホスト" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8323,7 +8317,7 @@ msgstr "PHP のバージョン" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9461,7 +9455,7 @@ msgstr "属性" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "その他" @@ -9626,7 +9620,7 @@ msgid "Library" msgstr "ライブラリ" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "バージョン" @@ -10081,8 +10075,8 @@ msgstr "ユーザ概略" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" @@ -10097,63 +10091,284 @@ msgstr "特権テーブルには選択したユーザがいません。" msgid "You have added a new user." msgstr "新しいユーザを追加しました。" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 秒" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 分" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "ログの統計" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "選択期間:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "ログの統計元を選択することができます。" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "結果はクエリ文でグループ化されます。" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "クエリの解析" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "モニタの使用方法" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin モニタは、サーバ構成の最適化を支援し、時間のかかるクエリを追跡する" +"ことができます。後者を行うには、log_output (ログの出力先) にテーブルを設定" +"し、slow_query_log (スロークエリログ) または general_log (一般クエリログ) の" +"いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" +"し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"残念ながらお使いのデータベースサーバは、phpMyAdmin でデータベースのログを分析" +"するために必要である、テーブルのログ機能をサポートしていません。テーブルのロ" +"グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" +"タ機能は使用することができます。" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "モニタの使い方:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"表示されている全てのグラフは、ブラウザよって一定間隔で更新されます。「設定」" +"のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに" +"ある歯車のアイコンを通じて削除が行えます。" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"ログからクエリ分析を行うには、グラフで該当期間を選択します。マウスの左ボタン" +"を押したままグラフの上をドラッグするように移動させてください。こうすること" +"で、グラフの任意の期間を選択できます。グループ毎に分類されたクエリが読み込ま" +"れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" +"をクリックすることで、更なるクエリ解析が可能です。" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "注意事項:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log (一般クエリログ) を有効にすると、5~15% サーバの負荷が増加するこ" +"とがあります。ログから生成される統計は、負荷が集中する作業であることを認識し" +"ておいてください。このような理由から、一般クエリログは短時間だけモニタするよ" +"うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" +"テーブルを空にしておくのが望ましいです。" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "グラフの追加" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "プリセットグラフ" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "状態変数" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "系列の選択:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "一般的なモニタ対象" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "もしくは対象変数名:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "差分値として表示する" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "除数を適用する" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "データ値に単位を追加する" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "この系列を追加する" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "系列をクリアする" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "グラフの系列:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "モニタ開始" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "使用方法/セットアップ" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "グラフの再配置/編集完了" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "強調表示を有効にする" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "再描画間隔" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "1 段のグラフ数" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "モニタ環境設定" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" +"トできます。" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "デフォルトに戻す" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL の結果" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "生成環境" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "データファイルの増分" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "その他" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "開始" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "合計時間:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "時間" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "閉じる" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "時間" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "この SQL をブックマークする" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "ラベル" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "すべてのユーザがこのブックマークを利用できるようにする" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10174,10 +10389,6 @@ msgstr "クリア" msgid "Bookmark this SQL query:" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "すべてのユーザがこのブックマークを利用できるようにする" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "同名のブックマークは差し替える" @@ -10316,7 +10527,7 @@ msgstr "オーバーヘッドのあるテーブルを確認する" msgid "Sort" msgstr "ソート" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "なし" @@ -10472,7 +10683,7 @@ msgstr "有効" msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s は正常に変更されました" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "クエリエラー" @@ -10628,7 +10839,7 @@ msgstr "ZIP アーカイブにエラーがあります:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "修正を保存しました" @@ -10684,7 +10895,7 @@ msgstr "大小を切り替える" msgid "Toggle relation lines" msgstr "リレーションラインの表示切替" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF スキーマの座標をインポート/エクスポートする" @@ -10744,43 +10955,43 @@ msgstr "集計" msgid "Active options" msgstr "アクティブオプション" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "ページが作成されました" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "ページの作成に失敗しました" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "ページ" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "選択したページからインポートする" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "選択したページへエクスポートする" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "ページを作成し、そこへエクスポートする。" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "新しいページの名前: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "倍率にあわせたエクスポート/インポート" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "推奨" @@ -10810,7 +11021,7 @@ msgstr "内部リレーションを追加しました" msgid "Relation deleted" msgstr "リレーションを削除しました" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "デザイナの座標を保存するときにエラーが発生しました。" @@ -11263,212 +11474,6 @@ msgstr "" "す。変更の度に、監視やベンチマークを行い、明確な改善が測定されなかった場合は" "変更した箇所を元に戻します。" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "モニタの使用方法" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin モニタは、サーバ構成の最適化を支援し、時間のかかるクエリを追跡する" -"ことができます。後者を行うには、log_output (ログの出力先) にテーブルを設定" -"し、slow_query_log (スロークエリログ) または general_log (一般クエリログ) の" -"いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" -"し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"残念ながらお使いのデータベースサーバは、phpMyAdmin でデータベースのログを分析" -"するために必要である、テーブルのログ機能をサポートしていません。テーブルのロ" -"グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" -"タ機能は使用することができます。" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "モニタの使い方:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"表示されている全てのグラフは、ブラウザよって一定間隔で更新されます。「設定」" -"のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに" -"ある歯車のアイコンを通じて削除が行えます。" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"ログからクエリ分析を行うには、グラフで該当期間を選択します。マウスの左ボタン" -"を押したままグラフの上をドラッグするように移動させてください。こうすること" -"で、グラフの任意の期間を選択できます。グループ毎に分類されたクエリが読み込ま" -"れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" -"をクリックすることで、更なるクエリ解析が可能です。" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "注意事項:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log (一般クエリログ) を有効にすると、5~15% サーバの負荷が増加するこ" -"とがあります。ログから生成される統計は、負荷が集中する作業であることを認識し" -"ておいてください。このような理由から、一般クエリログは短時間だけモニタするよ" -"うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" -"テーブルを空にしておくのが望ましいです。" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "グラフの追加" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "プリセットグラフ" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "状態変数" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "系列の選択:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "一般的なモニタ対象" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "もしくは対象変数名:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "差分値として表示する" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "除数を適用する" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "データ値に単位を追加する" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "この系列を追加する" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "系列をクリアする" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "グラフの系列:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "ログの統計" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "選択期間:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "ログの統計元を選択することができます。" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "結果はクエリ文でグループ化されます。" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "クエリの解析" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d 秒" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d 分" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "モニタ開始" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "使用方法/セットアップ" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "グラフの再配置/編集完了" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "強調表示を有効にする" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "再描画間隔" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "1 段のグラフ数" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "モニタ環境設定" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" -"トできます。" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "デフォルトに戻す" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12480,11 +12485,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" -"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" -"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" -"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" -"せん。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" +"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" +"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" +"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" #: setup/lib/index.lib.php:316 #, php-format @@ -12492,8 +12496,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "[kbd]config[/kbd] 認証タイプを設定し、自動ログインのためにユーザ名とパスワー" "ドを含めています。このことは、実働しているホストにとって望ましい方法とはいえ" @@ -12540,26 +12544,26 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要 msgid "Wrong data" msgstr "データが正しくありません" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "ブックマーク %s を作成しました" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12572,21 +12576,11 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "この SQL をブックマークする" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "ラベル" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12811,32 +12805,32 @@ msgstr "表示するカラムの選択" msgid "No column selected." msgstr "行が選択されていません" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "テーブル `%s` に対しての追跡レポート" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" "世代 %1$s を作成しました。%2$s の SQL コマンド追跡機能はアクティブです。" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s で非アクティブです。" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s でアクティブです。" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 文が実行されました。" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12844,117 +12838,117 @@ msgstr "" "作成された一時的なデータベースを使用してダンプを実行することができます。これ" "を実行できる特権を持っていることを確認してください。" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" "一時的なデータベースに対して実行しない場合は、この2行をコメントアウトします。" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL 文をエクスポートしました。ダンプしたものをコピーするか実行するかしてくだ" "さい。" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "世代 %s のスナップショット (SQL コード)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "追跡データ定義コマンドは正常に削除されました" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "追跡データ操作コマンドは正常に削除されました" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "追跡しているコマンド" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "種別:%1$s、期間:%2$s-%3$s、ユーザ:%4$sで絞り込む %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "レポートからこの追跡データを削除する" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "データが存在しません" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "日時" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "データ定義コマンド" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "データ操作コマンド" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 文のダンプ (ファイルでダウンロード)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 文のダンプ" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" "このオプションは、テーブルやそれに含まれるデータを置き換えるかもしれません。" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL 文を実行" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "上の結果をエクスポートする %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "世代を表示する" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s への SQL コマンド追跡を非アクティブにする" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "すぐに非アクティブにする" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s への SQL コマンド追跡をアクティブにする" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "すぐにアクティブにする" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s に世代 %1$s を作成" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "追跡するデータ定義コマンド:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "追跡するデータ操作コマンド:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "世代を作成する" @@ -13368,8 +13362,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "クエリキャッシュの総量に対するクエリキャッシュの空きメモリの割合は、%s%% で" "す。この値は、80%% 以上がいいと言われています。" @@ -13526,8 +13520,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "全ソートの内 %s%% が一時テーブルを使用しています。この値は、10%% 未満がいいと" "言われています。" @@ -14080,8 +14074,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections は max_connections の %s%% になっています。この値は、" -"80%% 未満がいいと言われています。" +"Max_used_connections は max_connections の %s%% になっています。この値は、80%" +"% 未満がいいと言われています。" #: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" @@ -14301,10 +14295,10 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが " -"60%% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを" -"使用していない、もしくは同マシン上で他のサービスを稼動させていないのであれ" -"ば、ご使用のシステムではこの設定で十分かもしれません。" +"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが 60%" +"% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを使" +"用していない、もしくは同マシン上で他のサービスを稼動させていないのであれば、" +"ご使用のシステムではこの設定で十分かもしれません。" #: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" @@ -14330,6 +14324,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています。" +#, fuzzy +#~| msgid "Headers every %s rows" +#~ msgid "Headers every %s rows" +#~ msgstr "%s 行毎にヘッダを表示" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14615,14 +14614,14 @@ msgstr "concurrent_insert は 0 に設定されています。" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" -#~ "[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアス" -#~ "は、$cfg['LeftFrameTableSeparator'] の指示に応じてテーブルを分割/入れ子す" -#~ "るために使用されます。そのフォルダはエイリアスのように呼び出されるだけで、" -#~ "テーブル名自体はそのまま変わることありません。" +#~ "[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアスは、$cfg" +#~ "['LeftFrameTableSeparator'] の指示に応じてテーブルを分割/入れ子するために" +#~ "使用されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル" +#~ "名自体はそのまま変わることありません。" #~ msgid "Display table comment instead of its name" #~ msgstr "テーブルの名前の代わりにコメントを表示する" @@ -15172,8 +15171,8 @@ msgstr "concurrent_insert は 0 に設定されています。" #~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ " #~ "6.29[/doc]" #~ msgstr "" -#~ "このクエリの結果は、グラフに使用することができませんでした。" -#~ "[doc@faq6-29]FAQ 6.29[/doc] を参照してください。" +#~ "このクエリの結果は、グラフに使用することができませんでした。[doc@faq6-29]" +#~ "FAQ 6.29[/doc] を参照してください。" #~ msgid "Title" #~ msgstr "タイトル" diff --git a/po/ka.po b/po/ka.po index a82977748a..706a6de213 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian \n" -"Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.4-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "ძებნა" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "ძებნა" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "გადასვლა" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "აღწერილობა" @@ -106,7 +106,7 @@ msgstr "" "%s ფაილი მიუწვდომელია ამ სისტემაში, გთხოვთ ეწვიოთ www.phpmyadmin.net -ს " "დამატებითი ინფორმაციისთვის." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა." @@ -136,7 +136,7 @@ msgstr "ცხრილის კომენტარები" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "სვეტები" @@ -159,7 +159,7 @@ msgstr "სვეტები" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "ტიპი" @@ -176,7 +176,7 @@ msgstr "ტიპი" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -191,7 +191,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "სტანდარტული" @@ -233,9 +233,9 @@ msgstr "კომენტარები" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "არა" @@ -260,9 +260,9 @@ msgstr "არა" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "დიახ" @@ -314,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "ცხრილი" @@ -397,7 +397,7 @@ msgstr "ნანახი ცხრილები" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "მონაცემთა ბაზა" @@ -406,17 +406,17 @@ msgstr "მონაცემთა ბაზა" msgid "Last version" msgstr "Create relation" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "შეიქმნა" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "სტატუსი" @@ -429,7 +429,7 @@ msgstr "სტატუსი" msgid "Action" msgstr "მოქმედება" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "ჩვენება" @@ -445,11 +445,11 @@ msgstr "" msgid "Drop" msgstr "Drop" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -457,11 +457,11 @@ msgstr "" msgid "Versions" msgstr "ვერსია" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "სნეიფშუთის სტრუქტურა" @@ -609,8 +609,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -650,7 +650,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -672,7 +672,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -905,7 +905,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -915,7 +915,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1014,8 +1014,8 @@ msgstr "პრივილეგიების გადატვირთვ msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1158,13 +1158,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1205,7 +1205,7 @@ msgid "Traffic" msgstr "ტრაფიკი" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1231,13 +1231,14 @@ msgstr "Snap to grid" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "არაა" @@ -1337,7 +1338,7 @@ msgstr "Other core settings" msgid "Current settings" msgstr "Other core settings" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1430,7 +1431,7 @@ msgstr "SQL-ის ახსნა" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "დრო" @@ -1543,7 +1544,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" @@ -1610,7 +1611,7 @@ msgid "Cancel" msgstr "გაუქმება" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy #| msgid "Load" msgid "Loading" @@ -1799,7 +1800,7 @@ msgstr "SQL Query box" msgid "Show query box" msgstr "SQL Query box" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1812,7 +1813,7 @@ msgstr "რედაქტირება" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1908,7 +1909,7 @@ msgstr "Data pointer size" msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "ასლი" @@ -1926,7 +1927,7 @@ msgstr "Lines terminated by" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2475,31 +2476,31 @@ msgstr "საათში" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "შრიფტის ზომა" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ზრდადობით" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2659,14 +2660,14 @@ msgstr "არჩევა" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "წაშლა" @@ -2775,17 +2776,11 @@ msgstr "" msgid "vertical" msgstr "ვერტიკალური" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "ჩანიშნული მოთხოვნის გაშვება" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2812,97 +2807,97 @@ msgstr "Sort by key" msgid "Options" msgstr "პარამეტრები" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "აჩვენეთ ორობით შინაარსი როგორც HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "შეიძლება იყოს მიახლოებითი. იხილეთ [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "სულ" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2911,8 +2906,8 @@ msgstr "მოთხოვნას დასჭირდა %01.4f წმ" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2923,48 +2918,48 @@ msgstr "" msgid "Check All" msgstr "ყველას შემოწმება" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ექსპორტი" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Create relation" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -3039,38 +3034,38 @@ msgstr "ინდექსი არაა განსაზღვრული! #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "ინდექსები" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "კოლაცია" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "კომენტარი" @@ -3110,7 +3105,7 @@ msgstr "ხედო" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "სტრუქტურა" @@ -3262,19 +3257,19 @@ msgstr[1] "ჩაისვა %1$d სტრიქონი." msgid "Error while creating PDF:" msgstr "Allows reading data." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "ცხრილების დათვლა" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3529,7 +3524,7 @@ msgid "Maximum rows to plot" msgstr "Maximum number of rows to display" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3634,14 +3629,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3883,7 +3878,7 @@ msgstr "" msgid "Max: %s%s" msgstr "მაქს: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3948,7 +3943,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ძრავები" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -4444,8 +4439,8 @@ msgstr "CHAR fields editing" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5015,9 +5010,8 @@ msgstr "გვერდის ნომერი:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5842,8 +5836,8 @@ msgstr "ცხრილის ჩანიშვნა" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -6077,8 +6071,8 @@ msgstr "Recall user name" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -6097,8 +6091,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6218,8 +6212,8 @@ msgstr "Statements" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -6247,8 +6241,8 @@ msgstr "Automatic recovery mode" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -6451,8 +6445,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" @@ -6891,7 +6885,7 @@ msgstr "მონაცემთა ბაზები" msgid "Table(s):" msgstr "ცხრილები" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6947,16 +6941,16 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7484,8 +7478,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7503,7 +7497,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7629,11 +7623,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -7690,7 +7684,7 @@ msgstr "ახალი ველის დამატება" msgid "Add prefix" msgstr "ახალი ველის დამატება" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8030,17 +8024,17 @@ msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "მხოლოდ მონაცემები" @@ -8209,8 +8203,8 @@ msgstr "მოგესალმებათ %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8492,7 +8486,7 @@ msgstr "Put fields names in the first row" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8500,7 +8494,7 @@ msgstr "ჰოსტი" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8518,7 +8512,7 @@ msgstr "PHP-ის ვერსია" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9747,7 +9741,7 @@ msgstr "ატრიბუტები" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "ექსტრა" @@ -9920,7 +9914,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "სპარსული" @@ -10382,8 +10376,8 @@ msgstr "მომხმარებლის მიმოხილვა" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -10394,58 +10388,281 @@ msgstr "" msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "წამში" +msgstr[1] "წამში" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in use" +msgstr[1] "in use" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "სტატისტიკის ჩევნება" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "ყველას მონიშნვა" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "მოთხოვნის ტიპი" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "ინფორმაცია" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "ახალი ველის დამატება" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Rename database to" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "ცხრილების არჩევა" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "ცხრილის არასწორი სახელი" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "ახალი სერვერის დამატება" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL მოთხოვნები" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Startup" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "განახლება" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR textarea columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Restore default value" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-ის შედეგი" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "დაგენერირება" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "მონაცემთა ფაილები" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Startup" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "სულ" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "დრო" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "დრო" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10464,10 +10681,6 @@ msgstr "გაწმენდა" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10597,7 +10810,7 @@ msgstr "" msgid "Sort" msgstr "დალაგება" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10767,7 +10980,7 @@ msgstr "ეფექტური" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -10931,7 +11144,7 @@ msgstr "შეცდომა ZIP არქივში:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" @@ -10989,7 +11202,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "To select relation, click :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -11064,52 +11277,52 @@ msgstr "შექმნა" msgid "Active options" msgstr "ცხრილის პარამეტრები" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Table %1$s has been created." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "pages" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ფაილების შემოტანა" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Export/Import to scale" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "ახალი ინდექსის შექმნა" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "მომხმარებლის სახელი" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Export/Import to scale" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "რეკომენდებული" @@ -11137,7 +11350,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11566,214 +11779,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "ინფორმაცია" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "ახალი ველის დამატება" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Rename database to" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "ცხრილების არჩევა" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "ცხრილის არასწორი სახელი" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "ახალი სერვერის დამატება" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL მოთხოვნები" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "სტატისტიკის ჩევნება" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "ყველას მონიშნვა" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "მოთხოვნის ტიპი" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "წამში" -msgstr[1] "წამში" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "in use" -msgstr[1] "in use" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Startup" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "განახლება" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR textarea columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Restore default value" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12448,18 +12453,16 @@ msgstr "კონფიგურაციის შენახვა ან ჩ #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " -#| "level directory as described in [a@../Documentation." -#| "html#setup_script]umentation[/a]. Otherwise you will be only able to " -#| "download or display " +#| "level directory as described in [a@../Documentation.html#setup_script]" +#| "umentation[/a]. Otherwise you will be only able to download or display " msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " -"level directory as described in [a@../Documentation." -"html#setup_script]documentation[/a]. Otherwise you will be only able to " -"download or display it." +"level directory as described in [a@../Documentation.html#setup_script]" +"documentation[/a]. Otherwise you will be only able to download or display it." #: setup/frames/index.inc.php:60 msgid "" @@ -12614,10 +12617,10 @@ msgstr "" #| msgid "" #| "s [a@?page=form&formset=features#tab_Security]option[/a] should be " #| "abled as it allows attackers to bruteforce login to any MySQL server. you " -#| "feel this is necessary, use [a@?page=form&" -#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "tection may not be reliable if your IP belongs to an ISP where usands of " -#| "users, including you, are connected to." +#| "feel this is necessary, use [a@?page=form&mset=features#tab_Security]" +#| "trusted proxies list[/a]. However, IP-based tection may not be reliable " +#| "if your IP belongs to an ISP where usands of users, including you, are " +#| "connected to." msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " @@ -12722,11 +12725,11 @@ msgid "" "of users, including you, are connected to." msgstr "" "If you feel this is necessary, use additional protection settings - [a@?" -"page=servers&mode=edit&id=%1$d#tab_Server_config]host " -"authentication[/a] settings and [a@?page=form&" -"formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -"protection may not be reliable if your IP belongs to an ISP where thousands " -"of users, including you, are connected to." +"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication" +"[/a] settings and [a@?page=form&formset=features#tab_Security]trusted " +"proxies list[/a]. However, IP-based protection may not be reliable if your " +"IP belongs to an ISP where thousands of users, including you, are connected " +"to." #: setup/lib/index.lib.php:316 #, fuzzy, php-format @@ -12734,22 +12737,20 @@ msgstr "" #| " set the [kbd]config[/kbd] authentication type and included username " #| "password for auto-login, which is not a desirable option for live ts. " #| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your " -#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&" -#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or " -#| "[kbd]httpbd]." +#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=d#tab_Server]" +#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -"kbd]." +"phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1$d#tab_Server]" +"authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, fuzzy, php-format @@ -12809,49 +12810,39 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters" msgid "Wrong data" msgstr "მონაცემთა ბაზები არაა" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark not created" msgstr "ცხრილის ჩანიშვნა" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Label" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13099,150 +13090,150 @@ msgstr "აირჩიეთ საჩვენებელი ველი" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "მონაცემთა ბაზები არაა" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "მონაცემები" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Export defaults" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Deactivate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Create relation" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Create relation" @@ -13626,8 +13617,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13761,8 +13752,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14488,6 +14479,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "ჩანიშნული მოთხოვნის გაშვება" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/kk.po b/po/kk.po index fb1e7b62e9..365e15ed6a 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh \n" -"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -51,7 +51,7 @@ msgid "Search:" msgstr "Іздеу" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -80,21 +80,21 @@ msgstr "Іздеу" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Өту" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Индекс атауы" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Сипаттама" @@ -113,7 +113,7 @@ msgstr "" "%s файлы табылмады. Барлық қосымша ақпараттар, www.phpmyadmin.net сайтында " "орналасқан." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s дерекқоры құрылды." @@ -143,7 +143,7 @@ msgstr "Кестеге түсініктеме:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Бағана" @@ -166,7 +166,7 @@ msgstr "Бағана" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Типі" @@ -183,7 +183,7 @@ msgstr "Типі" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Бос/Null" @@ -198,7 +198,7 @@ msgstr "Бос/Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Келісім бойынша" @@ -240,9 +240,9 @@ msgstr "Түсініктеме" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Жоқ" @@ -267,9 +267,9 @@ msgstr "Жоқ" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Иә" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Кесте" @@ -403,7 +403,7 @@ msgstr "Қадағаланатын кестелер" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Дерекқор" @@ -411,17 +411,17 @@ msgstr "Дерекқор" msgid "Last version" msgstr "Соңғы нұсқа" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Құрылған" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Жаңартылған" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Күй" @@ -434,7 +434,7 @@ msgstr "Күй" msgid "Action" msgstr "Әрекет" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Көрсету" @@ -450,11 +450,11 @@ msgstr "Кесте үшін мәліметтерді бақылауды тоқт msgid "Drop" msgstr "Жою" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "қосулы" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "өшірулі" @@ -462,11 +462,11 @@ msgstr "өшірулі" msgid "Versions" msgstr "Нұсқа" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Бақылаудың есептемесі" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Құрылым түсірілімі" @@ -628,11 +628,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Мүмкін, жүктегелі отырған файлдың өлшемі тым үлкен. Осы шектеуді айналып өту " "әдістері, %sқұжаттамада%s сипатталған." @@ -674,7 +674,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -696,7 +696,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -888,7 +888,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - өшірулі." @@ -897,7 +897,7 @@ msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - ө msgid "Do you really want to execute \"%s\"?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 #, fuzzy msgid "You are about to DESTROY a complete database!" msgstr "Сіз дерекқорды толығымен ЖОЙҒАЛЫ отырсыз!" @@ -985,8 +985,8 @@ msgstr "Артықшылықтардың қайта қосылуы" msgid "Removing Selected Users" msgstr "Таңдалынған қолдаушыларды жою" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Жабу" @@ -1110,13 +1110,13 @@ msgstr "Байт" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1155,7 +1155,7 @@ msgid "Traffic" msgstr "Трафик" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Баптау" @@ -1175,13 +1175,14 @@ msgstr "Торға график қосу" msgid "Please add at least one variable to the series" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Жоқ" @@ -1274,7 +1275,7 @@ msgstr "Баптауын өзгерту" msgid "Current settings" msgstr "Ағымдағы баптау" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "График тақырыбы" @@ -1354,7 +1355,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Уақыт" @@ -1445,7 +1446,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1502,7 +1503,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Жүктелуде" @@ -1650,7 +1651,7 @@ msgstr "Сұраныс өрісін жасыру" msgid "Show query box" msgstr "Сұраныс өрісін көрсету" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1663,7 +1664,7 @@ msgstr "Өзгерту" msgid "No rows selected" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1745,7 +1746,7 @@ msgstr "" msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Көшіру" @@ -1761,7 +1762,7 @@ msgstr "Сызық" msgid "Polygon" msgstr "Көпбұрыш" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Геометрия" @@ -2234,32 +2235,32 @@ msgstr "сағатқа" msgid "per day" msgstr "күнге" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 #, fuzzy msgid "Font size" msgstr "Қарiп өлшемi" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Өсу бойынша" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2413,14 +2414,14 @@ msgstr "Шолу" msgid "Delete the matches for the %s table?" msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Жою" @@ -2509,16 +2510,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2545,89 +2541,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2636,8 +2632,8 @@ msgstr "" msgid "With selected:" msgstr "Белгi соғылғандарды:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2648,45 +2644,45 @@ msgstr "Белгi соғылғандарды:" msgid "Check All" msgstr "Барлығын белгілеу" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Баспаға шығару түрі" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2761,38 +2757,38 @@ msgstr "Индексі анықталмаған!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индекстер" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Бірегей" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Қапталған" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Салыстыру" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Пікірлеу" @@ -2832,7 +2828,7 @@ msgstr "Түр" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2977,15 +2973,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3224,7 +3220,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3321,14 +3317,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3566,7 +3562,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3625,7 +3621,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4086,8 +4082,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4612,9 +4608,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5351,8 +5346,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5545,8 +5540,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5563,8 +5558,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5661,8 +5656,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5681,8 +5676,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5868,8 +5863,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6259,7 +6254,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6308,8 +6303,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6800,8 +6795,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6817,7 +6812,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6933,11 +6928,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6988,7 +6983,7 @@ msgstr "Кестениң префиксін ауыстыру" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7317,17 +7312,17 @@ msgid "Drop the database (DROP)" msgstr "(DROP) дерекқорын өшіру" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Тек құрылымы ғана" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Құрылымы және мәліметтері" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Тек мәліметтер ғана" @@ -7490,8 +7485,8 @@ msgstr "%s-ге қош келдіңіз" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7737,13 +7732,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7761,7 +7756,7 @@ msgstr "Нұсқа" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8799,7 +8794,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8962,7 +8957,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9405,8 +9400,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9417,60 +9412,253 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "Шығару" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Басқа" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Сен" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Толық уақыт:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Уақыт" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Жабу" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Уақыт" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9489,10 +9677,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9618,7 +9802,7 @@ msgstr "Ықшамдауды қажет ететіндерді белгілеу" msgid "Sort" msgstr "Сұрыптау" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9777,7 +9961,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9915,7 +10099,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9971,7 +10155,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10029,39 +10213,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10089,7 +10273,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10493,186 +10677,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11553,8 +11557,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11595,43 +11599,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -11853,143 +11849,143 @@ msgstr "Сұраныс орындалуы үшін, көрсетілімдегі msgid "No column selected." msgstr "Бірде-бір қатар таңдалынбады" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12368,8 +12364,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12494,8 +12490,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/kn.po b/po/kn.po index 7cb22c892e..a22f1b9dbf 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-04 15:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kannada \n" -"Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "" @@ -106,7 +106,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "" @@ -134,7 +134,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "" @@ -157,7 +157,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "" @@ -174,7 +174,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "" @@ -189,7 +189,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "" @@ -231,9 +231,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "" @@ -258,9 +258,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "" @@ -310,7 +310,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "" @@ -386,7 +386,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "" @@ -394,17 +394,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -417,7 +417,7 @@ msgstr "" msgid "Action" msgstr "" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "" @@ -433,11 +433,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -445,11 +445,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -593,8 +593,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -634,7 +634,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -656,7 +656,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -836,7 +836,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -845,7 +845,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -929,8 +929,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1053,13 +1053,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1098,7 +1098,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1118,13 +1118,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1217,7 +1218,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1297,7 +1298,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1388,7 +1389,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1445,7 +1446,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1593,7 +1594,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1606,7 +1607,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1688,7 +1689,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1704,7 +1705,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2173,31 +2174,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2337,14 +2338,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2431,16 +2432,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2467,89 +2463,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2558,8 +2554,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2570,45 +2566,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2683,38 +2679,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2754,7 +2750,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2899,15 +2895,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3142,7 +3138,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3239,14 +3235,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3482,7 +3478,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3541,7 +3537,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3997,8 +3993,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4519,9 +4515,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5254,8 +5249,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5448,8 +5443,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5466,8 +5461,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5564,8 +5559,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5584,8 +5579,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5771,8 +5766,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6158,7 +6153,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6207,8 +6202,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6697,8 +6692,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6714,7 +6709,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6830,11 +6825,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6879,7 +6874,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7206,17 +7201,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7377,8 +7372,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7620,13 +7615,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7640,7 +7635,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8666,7 +8661,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8827,7 +8822,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9268,8 +9263,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9280,46 +9275,239 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9338,10 +9526,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9467,7 +9651,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9621,7 +9805,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9756,7 +9940,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9812,7 +9996,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9870,39 +10054,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9930,7 +10114,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10334,186 +10518,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11388,8 +11392,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11430,43 +11434,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11670,143 +11666,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12154,8 +12150,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12273,8 +12269,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ko.po b/po/ko.po index 0fff625f24..3d8627d8ac 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-18 13:51+0200\n" "Last-Translator: Yungu Kim \n" -"Language-Team: Korean \n" -"Language: ko\n" +"Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -43,7 +44,7 @@ msgid "Search:" msgstr "검색:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -72,21 +73,21 @@ msgstr "검색:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "실행" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "키 이름" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "설명" @@ -105,7 +106,7 @@ msgstr "" "%s 파일은 이 시스템에서 이용할 수 없습니다. www.phpmyadmin.net에 방문하여 정" "보를 확인하시기 바랍니다." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." @@ -133,7 +134,7 @@ msgstr "테이블 설명:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "컬럼명" @@ -156,7 +157,7 @@ msgstr "컬럼명" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "종류" @@ -173,7 +174,7 @@ msgstr "종류" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -188,7 +189,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "기본값" @@ -230,9 +231,9 @@ msgstr "설명" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "아니오" @@ -257,9 +258,9 @@ msgstr "아니오" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "예" @@ -311,7 +312,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "테이블" @@ -386,7 +387,7 @@ msgstr "추적된 테이블" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "데이터베이스" @@ -394,17 +395,17 @@ msgstr "데이터베이스" msgid "Last version" msgstr "최근 버전" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "생성됨" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "수정됨" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "상태" @@ -417,7 +418,7 @@ msgstr "상태" msgid "Action" msgstr "실행" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "보기" @@ -433,11 +434,11 @@ msgstr "이 테이블에 대한 추적 데이터를 제거" msgid "Drop" msgstr "삭제" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "활성" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "비활성" @@ -445,11 +446,11 @@ msgstr "비활성" msgid "Versions" msgstr "버전" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "추적 보고서" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "구조 요약" @@ -602,11 +603,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 " -"%sdocumentation%s를 참조하여 주십시오." +"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %" +"sdocumentation%s를 참조하여 주십시오." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -650,7 +651,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "북마크 %s가 생성되었습니다." @@ -676,7 +677,7 @@ msgstr "" "파싱된 데이터가 없지만, 이것은 보통 phpMyAdmin이 php 시간 제한을 늘리지 않고" "는 이 가져오기를 마칠 수 없음을 뜻합니다." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -880,10 +881,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 " -"%sdocumentation%s 에서 확인이 가능합니다." +"Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 %" +"sdocumentation%s 에서 확인이 가능합니다." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." @@ -892,7 +893,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." msgid "Do you really want to execute \"%s\"?" msgstr "정말로 \"%s\"을/를 실행하시겠습니까?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "이 데이터베이스 전체를 제거하려고 합니다!" @@ -976,8 +977,8 @@ msgstr "사용권한을 다시 불러옵니다." msgid "Removing Selected Users" msgstr "선택한 사용자를 삭제" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "닫기" @@ -1103,13 +1104,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1148,7 +1149,7 @@ msgid "Traffic" msgstr "소통량" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "설정" @@ -1168,13 +1169,14 @@ msgstr "차트에 그리드 추가" msgid "Please add at least one variable to the series" msgstr "최소 한개이상의 변수를 시리즈에 추가하십시오" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "없음" @@ -1274,7 +1276,7 @@ msgstr "설정 변경" msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "차트 제목" @@ -1358,7 +1360,7 @@ msgstr "SQL 해석" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "시간" @@ -1452,7 +1454,7 @@ msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "가져오기" @@ -1509,7 +1511,7 @@ msgid "Cancel" msgstr "취소" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "불러오는 중" @@ -1657,7 +1659,7 @@ msgstr "질의 상자 숨기기" msgid "Show query box" msgstr "질의 상자 보이기" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1670,7 +1672,7 @@ msgstr "수정" msgid "No rows selected" msgstr "선택된 행이 없습니다" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1752,7 +1754,7 @@ msgstr "데이터 포인트 내용" msgid "Ignore" msgstr "무시" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "복사" @@ -1768,7 +1770,7 @@ msgstr "줄(열) 구분자" msgid "Polygon" msgstr "폴리곤" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "기하데이터" @@ -2249,32 +2251,32 @@ msgstr "시간당" msgid "per day" msgstr "하루당" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "이미 존재하고 있는 환경설정 파일 (%s) 을 읽을 수 없습니다." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "설정 파일에 잘못된 권한이 지정되어있습니다. 익명 쓰기 권한이면 안됩니다." -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "글꼴 크기" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "오름차순" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2356,7 +2358,9 @@ msgstr "질의 실행" msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." -msgstr "서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 않습니다)." +msgstr "" +"서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 " +"않습니다)." #: libraries/DatabaseInterface.class.php:2052 msgid "The server is not responding." @@ -2414,14 +2418,14 @@ msgstr "보기" msgid "Delete the matches for the %s table?" msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "삭제" @@ -2508,16 +2512,11 @@ msgstr "수평 (rotated headers)" msgid "vertical" msgstr "수직(세로)" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "%s 행마다 헤더 반복" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "키로 정렬" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2544,90 +2543,90 @@ msgstr "키로 정렬" msgid "Options" msgstr "옵션" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "텍스트의 일부분" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "전체 텍스트" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "관계키" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "연관된 행 표시" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "바이너리 항목 보이기" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB 내용 보기" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "2진수 데이터를 HEX형식으로 표시" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "브라우저 정보 숨기기" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "잘 알려진 텍스트" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "잘 알려진 바이너리" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "근사값입니다. [doc@faq3-11]FAQ 3.11[/doc]를 참조하세요." -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "질의(in query)" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "합계" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2636,8 +2635,8 @@ msgstr "질의 실행시간 %01.4f 초" msgid "With selected:" msgstr "선택한 것을:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2648,45 +2647,45 @@ msgstr "선택한 것을:" msgid "Check All" msgstr "모두 체크" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "내보내기" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "뷰 생성" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "쿼리 결과 처리방법" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "인쇄용 보기" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "인쇄용 보기 (전체 텍스트)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "차트 표시" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "GIS 데이터를 시각화" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "링크를 찾을 수 없습니다." @@ -2764,38 +2763,38 @@ msgstr "인덱스가 설정되지 않았습니다!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "인덱스" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "고유값" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "관계성" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "데이터정렬방식" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "설명" @@ -2836,7 +2835,7 @@ msgstr "뷰" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "구조" @@ -2978,15 +2977,15 @@ msgstr[0] "%1$d 열이 삽입되었습니다." msgid "Error while creating PDF:" msgstr "PDF 생성 실패:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "최근 테이블을 저장할 수 없습니다." -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "최근 테이블" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "최근 테이블이 없습니다." @@ -3226,7 +3225,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3334,14 +3333,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3592,8 +3591,7 @@ msgstr "" msgid "Max: %s%s" msgstr "최대: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 -#| msgid "SQL query" +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL 질의:" @@ -3652,7 +3650,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "인라인" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "프로파일링" @@ -3822,7 +3820,6 @@ msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확 #: libraries/common.inc.php:661 #, php-format -#| msgid "Server" msgid "Server %d" msgstr "서버 %d" @@ -3852,12 +3849,10 @@ msgid "numeric key detected" msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다" #: libraries/config.values.php:49 libraries/config.values.php:64 -#| msgid "Ins" msgid "Icons" msgstr "아이콘" #: libraries/config.values.php:50 libraries/config.values.php:65 -#| msgid "Test" msgid "Text" msgstr "텍스트" @@ -4126,8 +4121,8 @@ msgstr "CHAR 컬럼 편집" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "사용하기 쉬운 편집기([a@http://codemirror.net/]CodeMirror[/a], 문법 강조 및 " "줄 번호 지원)로 SQL 쿼리를 편집" @@ -4660,9 +4655,8 @@ msgstr "페이지 제목" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -4838,7 +4832,9 @@ msgstr "phpMyAdmin에서 보여지는 일부 경고 비활성화" 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] 압축 사용" +msgstr "" +"가져오기 또는 내보내기 작업에 [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] " +"압축 사용" #: libraries/config/messages.inc.php:235 msgid "GZip" @@ -4955,8 +4951,9 @@ msgid "" "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 "" -"활성화 할 경우 로그아웃 시 모든 서버의 쿠키를 삭제하며 비활성화 할 경우 로그아웃 시 현재 서버만 적용됩니다. FALSE로 설정하면 " -"여러 서버에 연결되어 있을 때 다른 서버에서 로그아웃 하는 것을 잊을 수 있습니다." +"활성화 할 경우 로그아웃 시 모든 서버의 쿠키를 삭제하며 비활성화 할 경우 로그" +"아웃 시 현재 서버만 적용됩니다. FALSE로 설정하면 여러 서버에 연결되어 있을 " +"때 다른 서버에서 로그아웃 하는 것을 잊을 수 있습니다." #: libraries/config/messages.inc.php:272 msgid "Delete all cookies on logout" @@ -5414,8 +5411,8 @@ msgstr "테이블 즐겨찾기" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5622,8 +5619,8 @@ msgstr "최근에 사용한 테이블" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5640,8 +5637,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5741,11 +5738,11 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: " -"[kbd]pma__tracking[/kbd]" +"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5763,8 +5760,8 @@ msgstr "버전 자동생성" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5957,8 +5954,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "사용자명" @@ -6111,8 +6108,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"가져오기와 내보내기 작업들에 대해 [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] compression 가능하게 함" +"가져오기와 내보내기 작업들에 대해 [a@http://en.wikipedia.org/wiki/ZIP_" +"(file_format)]ZIP[/a] compression 가능하게 함" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -6364,7 +6361,7 @@ msgstr "데이터베이스 :" msgid "Table(s):" msgstr "테이블 :" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "행 :" @@ -6413,8 +6410,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "이 값은 %1$sstrftime%2$s에 의해 생성되었습니다. 따라서, 시간 포맷 문자열을 써" "서 변경할 수 있습니다. 또한, 다음과 같은 변환도 일어납니다: %3$s. 그 외의 문" @@ -6924,8 +6921,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "PBXT에 관한 문서나 추가 정보는 %sPrimeBase XT 홈페이지%s에 있습니다." #: libraries/engines/pbxt.lib.php:133 @@ -6941,7 +6938,7 @@ msgid "No data found for GIS visualization." msgstr "GIS 시각화를 위한 데이터를 찾을 수 없습니다." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴)." @@ -7058,11 +7055,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7117,7 +7114,7 @@ msgstr "인덱스 추가" msgid "Add prefix" msgstr "인덱스 추가" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "정말로 다음 쿼리를 실행하시겠습니까?" @@ -7453,17 +7450,17 @@ msgid "Drop the database (DROP)" msgstr "데이터베이스 제거 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "구조만" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "구조와 데이터 모두" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "데이터만" @@ -7626,8 +7623,8 @@ msgstr "%s에 오셨습니다" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -7885,13 +7882,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7909,7 +7906,7 @@ msgstr "PHP 확장:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8997,7 +8994,7 @@ msgstr "보기" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "추가" @@ -9172,7 +9169,7 @@ msgid "Library" msgstr "라이브러리" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "버전" @@ -9624,8 +9621,8 @@ msgstr "사용자 개요" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9636,60 +9633,271 @@ msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 초" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 분" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "로그 통계" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "통계가 생성될 로그를 선택하세요." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "질의 분석기" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +#, fuzzy +#| msgid "Pause monitor" +msgid "Using the monitor:" +msgstr "모니터링 정지" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "차트 추가" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "차트 삭제" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "All status variables" +msgid "Status variable(s)" +msgstr "모든 상태 변수" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Foreign Key" +msgid "Select series:" +msgstr "외래키 선택" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name:" +msgid "or type variable name:" +msgstr "잘못된 테이블 이름:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +#, fuzzy +#| msgid "Advisor" +msgid "Apply a divisor" +msgstr "시스템 분석 / 조언" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add user" +msgid "Add this series" +msgstr "사용자 추가" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "모니터링 시작" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "강조 표시 사용" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +#| msgid "Generate" +msgid "Refresh rate" +msgstr "생성" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add columns" +msgid "Chart columns" +msgstr "세로열 추가하기" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL 결과" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "생성" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "데이터 파일 증가량" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "기타" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "상태" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "전체 시간:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "시간" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "닫기" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "시간" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "이 SQL 질의를 북마크함" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9708,10 +9916,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9848,7 +10052,7 @@ msgstr "오버헤드를 가진 테이블들을 체크" msgid "Sort" msgstr "정렬" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "없음" @@ -10013,7 +10217,7 @@ msgstr "실제량" msgid "Table %1$s has been altered successfully" msgstr "테이블 %1$s 가 성공적으로 수정되었습니다" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "질의 오류" @@ -10119,7 +10323,6 @@ msgid "Tracking of %s is activated." msgstr "%s의 트래킹이 활성화되었습니다." #: libraries/user_preferences.inc.php:29 -#| msgid "Change settings" msgid "Manage your settings" msgstr "나만의 설정 관리" @@ -10157,7 +10360,7 @@ msgstr "ZIP 압축파일 오류:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다." @@ -10219,7 +10422,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10291,41 +10494,41 @@ msgstr "" msgid "Active options" msgstr "실행" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy #| msgid "Database %1$s has been created." msgid "Page has been created" msgstr "데이터베이스 %1$s가 생성되었습니다." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "페이지 생성 실패" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "선택된 페이지에서 가져오기" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "선택된 페이지로 내보내기" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 #, fuzzy #| msgid "Recommendation" msgid "recommended" @@ -10355,7 +10558,7 @@ msgstr "" msgid "Relation deleted" msgstr "릴레이션 제거됨" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10777,204 +10980,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -#, fuzzy -#| msgid "Pause monitor" -msgid "Using the monitor:" -msgstr "모니터링 정지" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "차트 추가" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "차트 삭제" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "All status variables" -msgid "Status variable(s)" -msgstr "모든 상태 변수" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Foreign Key" -msgid "Select series:" -msgstr "외래키 선택" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name:" -msgid "or type variable name:" -msgstr "잘못된 테이블 이름:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -#, fuzzy -#| msgid "Advisor" -msgid "Apply a divisor" -msgstr "시스템 분석 / 조언" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add user" -msgid "Add this series" -msgstr "사용자 추가" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "로그 통계" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "통계가 생성될 로그를 선택하세요." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "질의 분석기" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d 초" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d 분" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "모니터링 시작" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "강조 표시 사용" - -#: server_status_monitor.php:708 -#, fuzzy -#| msgid "Generate" -msgid "Refresh rate" -msgstr "생성" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add columns" -msgid "Chart columns" -msgstr "세로열 추가하기" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11869,8 +11874,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11911,26 +11916,26 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자가 포함되어야 msgid "Wrong data" msgstr "잘못된 데이터" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "북마크 %s가 생성되었습니다." -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP 코드 보기" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -11942,19 +11947,11 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 격자창 편집, 체크박스, 편집, " "복사, 삭제 기능을 사용할 수 없습니다." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "이 SQL 질의를 북마크함" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "표시할 데이터 없음" @@ -12176,150 +12173,150 @@ msgstr "출력할 필드 선택" msgid "No column selected." msgstr "선택된 행이 없습니다" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, fuzzy, php-format #| msgid "Tracking report" msgid "Tracking report for table `%s`" msgstr "추적 보고서" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 문장이 실행되었습니다." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "필요치 않을 경우 이 두 줄을 주석처리하시기 바랍니다." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 구문이 추출되었습니다. 덤프된 내용을 복사하거나 실행하세요." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "버전 %s 스냅샷 (SQL 코드)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 #, fuzzy #| msgid "Tracking report" msgid "Tracking statements" msgstr "추적 보고서" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "이 테이블에 대한 추적 데이터를 제거" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "데이터 없음" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "날짜" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 #, fuzzy #| msgid "Data point content" msgid "Data definition statement" msgstr "데이터 포인트 내용" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 덤프(파일 다운로드)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 덤프" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "이 옵션은 테이블과 그 안에 담겨 있는 데이터를 교체하게 됩니다." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL 실행" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "%s로 내보내기" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "버전 보기" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s 에 대한 추적을 비활성화하기" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "지금 비활성화" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s 에 대한 추적을 활성화하기" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "지금 활성화" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy #| msgid "Last version" msgid "Create version" @@ -12696,8 +12693,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "전체 쿼리 캐시 크기(Size)에서 남은 쿼리 캐시 메모리의 현재 비율은 %s%% 입니" "다. 80%%보다 높아야 됩니다" @@ -12827,8 +12824,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "정렬 연산의 %s%%가 임시 테이블을 생성합니다. 이 값은 10%% 미만인 것이 좋습니" "다." @@ -13479,6 +13476,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert가 0으로 설정되었습니다." +#~ msgid "Headers every %s rows" +#~ msgstr "%s 행마다 헤더 반복" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/lt.po b/po/lt.po index 3bdaf45d3d..d27b381ebf 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-16 14:41+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: Lithuanian \n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Paieška" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Paieška" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Vykdyti" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Indekso pavadinimas" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Paaiškinimas" @@ -109,7 +109,7 @@ msgstr "" "Failas %s nėra prieinamas šioje sistemoje, norint sužinoti daugiau prašome " "apsilankyti www.phpmyadmin.net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." @@ -139,7 +139,7 @@ msgstr "Lentelės komentarai" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Stulpelis" @@ -162,7 +162,7 @@ msgstr "Stulpelis" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipas" @@ -179,7 +179,7 @@ msgstr "Tipas" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -194,7 +194,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Nutylint" @@ -236,9 +236,9 @@ msgstr "Komentarai" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -263,9 +263,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Taip" @@ -315,7 +315,7 @@ msgstr "phpMyAdmin nustatymų saugykla išjungta. %sIšsiaiškinkite kodėl%s." #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Lentelė" @@ -398,7 +398,7 @@ msgstr "Sekamos lentelės" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Duomenų bazė" @@ -406,17 +406,17 @@ msgstr "Duomenų bazė" msgid "Last version" msgstr "Paskutinė versija" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Sukurta" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Atnaujinta" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Būsena" @@ -429,7 +429,7 @@ msgstr "Būsena" msgid "Action" msgstr "Veiksmas" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Rodyti" @@ -445,11 +445,11 @@ msgstr "Ištrinti šios lentelės sekimo duomenis" msgid "Drop" msgstr "Šalinti" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktyvus" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "neaktyvus" @@ -457,11 +457,11 @@ msgstr "neaktyvus" msgid "Versions" msgstr "Versijos" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Sekimo ataskaita" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Momentinė struktūros kopija" @@ -617,11 +617,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " -"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" +"sdokumentaciją%s būdams kaip apeiti šį apribojimą." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -667,7 +667,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" @@ -694,7 +694,7 @@ msgstr "" "dažniausiai reiškia, kad phpMyAdmin negali baigti importuoti nebent Jūs " "padidintumėte PHP laiko limitą." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -913,7 +913,7 @@ msgstr "" "Serveris veikia su Suhosin. Prašome perskaityti %sdokumentaciją%s dėl galimų " "problemų." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "„DROP DATABASE“ komandos įvykdyti negalima." @@ -922,7 +922,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima." msgid "Do you really want to execute \"%s\"?" msgstr "Ar tikrai norite vykdyti „%s“?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!" @@ -1006,8 +1006,8 @@ msgstr "Perkraunamos privilegijos" msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Uždaryti" @@ -1132,13 +1132,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1177,7 +1177,7 @@ msgid "Traffic" msgstr "Apkrovimas" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Nustatymai" @@ -1199,13 +1199,14 @@ msgstr "Pritraukti prie tinklelio" msgid "Please add at least one variable to the series" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ne" @@ -1302,7 +1303,7 @@ msgstr "Keisti nustatymus" msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagramos antraštė" @@ -1382,7 +1383,7 @@ msgstr "Paaiškinti išvestį" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Laikas" @@ -1479,7 +1480,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" @@ -1544,7 +1545,7 @@ msgid "Cancel" msgstr "Atšaukti" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Įkeliama" @@ -1700,7 +1701,7 @@ msgstr "Slėpti užklausos laukelį" msgid "Show query box" msgstr "Rodyti užklausos laukelį" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1713,7 +1714,7 @@ msgstr "Redaguoti" msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1799,7 +1800,7 @@ msgstr "Duomenų rodyklės dydis" msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopijuoti" @@ -1815,7 +1816,7 @@ msgstr "Atkarpų seka" msgid "Polygon" msgstr "Daugiakampis" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrija" @@ -2268,8 +2269,8 @@ msgstr "" #| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." msgstr "" -"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: " -"%s" +"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: %" +"s" #: libraries/Advisor.class.php:395 #, php-format @@ -2310,32 +2311,32 @@ msgstr "per valandą" msgid "per day" msgstr "per dieną" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Esamo konfigūracinio failo (%s) neina nuskaityti." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Blogos teisės konfigūracinio failo, neturėtų būti įrašymo galimybė visiems!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Šrifto dydis" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Didėjimo tvarka" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2495,14 +2496,14 @@ msgstr "Peržiūrėti" msgid "Delete the matches for the %s table?" msgstr "Ištrinti sutapimus %s lentelėje(ei)?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Trinti" @@ -2603,16 +2604,11 @@ msgstr "horizontalūs (pasukti pavadinimai)" msgid "vertical" msgstr "vertikaliai" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Antraštės kas %s eilučių" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2639,93 +2635,93 @@ msgstr "Rūšiuoti pagal raktą" msgid "Options" msgstr "Nustatymai" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Tekstus rodyti dalinai" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Tekstus rodyti pilnai" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Sąryšių raktas" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Ryšių rodymo stulpelis" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Rodyti dvejetainį turinį" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Rodyti BLOB turinį" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Rodyti dvejetainį turinį kaip šešioliktainį" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Naršyklės transformacija" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Gali būti apytikslis. Žiūrėkite [doc@faq3-11]DUK 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "užklausa vykdoma" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " -"%sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" +"sdokumentacijoje%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "iš viso" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2734,8 +2730,8 @@ msgstr "Užklausa užtruko %01.4f sek." msgid "With selected:" msgstr "Pasirinktus:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2746,45 +2742,45 @@ msgstr "Pasirinktus:" msgid "Check All" msgstr "Pažymėti visas" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportuoti" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Sukurti rodinį" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Spausdinti struktūrą" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -2863,38 +2859,38 @@ msgstr "Nėra aprašytų indeksų!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksai" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Elementų skaičius" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Palyginimas" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentaras" @@ -2935,7 +2931,7 @@ msgstr "Rodinys" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktūra" @@ -3083,15 +3079,15 @@ msgstr[2] "Įterpta %1$d eilučių." msgid "Error while creating PDF:" msgstr "Klaida sudarinėjant PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Negalėjo išsaugoti paskiausios lentelės" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Paskiausios lentelės" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nėra jokių paskiausių lentelių" @@ -3340,7 +3336,7 @@ msgid "Maximum rows to plot" msgstr "Maksimalus skaičius eilučių rodymui" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" @@ -3447,14 +3443,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3698,7 +3694,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3759,7 +3755,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiliavimas" @@ -4230,8 +4226,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Nustato kokio tipo redagavimo laukelis turėtų būti naudojamas CHAR ir " -"VARCHAR laukeliams; [kbd]input[/kbd] - leidžia riboti įvedimo ilgį, " -"[kbd]textarea[/kbd] - leidžia naujas eilutes laukelyje" +"VARCHAR laukeliams; [kbd]input[/kbd] - leidžia riboti įvedimo ilgį, [kbd]" +"textarea[/kbd] - leidžia naujas eilutes laukelyje" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4239,8 +4235,8 @@ msgstr "CHAR stulpelių redagavimas" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4785,9 +4781,8 @@ msgstr "Puslapių pavadinimai" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Nurodykite naršyklės pavadinimo juostos tekstą. Pasinaudokite " "[doc@cfg_TitleTable]dokumentacija[/doc] magiškiesiems tekstams, kurie bus " @@ -5617,11 +5612,11 @@ msgstr "Pažymėti lentelę" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" #| "kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: " -"[kbd]pma_table_coords[/kbd]" +"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5694,8 +5689,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: " -"[kbd]pma_designer_coords[/kbd]" +"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5733,14 +5728,14 @@ msgstr "Slėpti duomenų bazes" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: " -"[kbd]pma_history[/kbd]" +"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history" +"[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5815,8 +5810,8 @@ msgstr "" 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]" +"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5867,8 +5862,8 @@ msgstr "Paskiausiai naudota lentelė" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" 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]" @@ -5887,11 +5882,11 @@ msgstr "SHOW DATABASES komanda" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/" -"auth_types#signon]autentifikacijos tipus[/a] dėl pavyzdžių" +"Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"autentifikacijos tipus[/a] dėl pavyzdžių" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5926,8 +5921,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: " -"[kbd]pma_table_coords[/kbd]" +"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5942,8 +5937,8 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: " -"[kbd]pma_table_coords[/kbd]" +"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:434 msgid "Display columns table" @@ -5956,8 +5951,8 @@ msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: " -"[kbd]pma_table_uiprefs[/kbd]" +"Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: [kbd]" +"pma_table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -6004,14 +5999,14 @@ msgstr "Sekamos užklausos" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: " -"[kbd]pma_history[/kbd]" +"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history" +"[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -6032,11 +6027,11 @@ msgstr "Automatiškai sukurti versijas" #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: " -"[kbd]pma_designer_coords[/kbd]" +"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -6240,8 +6235,8 @@ msgstr "" "Jeigu Jūs turite individualizuotą slapyvardį, parašykite jį čia (numatytasis " "yra [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Vartotojo vardas" @@ -6652,7 +6647,7 @@ msgstr "Duomenų bazė(s):" msgid "Table(s):" msgstr "Lentelė(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Eilutės:" @@ -6701,8 +6696,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -7231,8 +7226,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7248,7 +7243,7 @@ msgid "No data found for GIS visualization." msgstr "Nerasta duomenų GIS vizualizavimui." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." @@ -7375,11 +7370,11 @@ msgid "" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -7430,7 +7425,7 @@ msgstr "Pridėti lentelės priešdėlį" msgid "Add prefix" msgstr "Pridėti priešdėlį" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7766,17 +7761,17 @@ msgid "Drop the database (DROP)" msgstr "Pašalinti duomenų bazę (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tik struktūra" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktūra ir duomenys" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tik duomenys" @@ -7939,8 +7934,8 @@ msgstr "Jūs naudojate %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -8204,7 +8199,7 @@ msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8212,7 +8207,7 @@ msgstr "Darbinė stotis" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8230,7 +8225,7 @@ msgstr "PHP versija" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8635,8 +8630,8 @@ msgstr "" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 #, fuzzy #| msgid "" -#| "ys the contents of the field as-is, without running it through " -#| "ecialchars(). That is, the field is assumed to contain valid HTML." +#| "ys the contents of the field as-is, without running it through ecialchars" +#| "(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -9401,7 +9396,7 @@ msgstr "Atributai" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Papildomai" @@ -9566,7 +9561,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versija" @@ -10034,8 +10029,8 @@ msgstr "Naudotojų apžvalga" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " @@ -10049,62 +10044,265 @@ msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekundė" +msgstr[1] "Sekundės" +msgstr[2] "Sekundžių" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minutė" +msgstr[1] "Minutė" +msgstr[2] "Minučių" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Registruoti statistiką" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Pasirinktas laiko tarpas:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Užklausos analizatorius" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitor instrukcijos" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Pridėti diagramą" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "Pašalinti diagramą" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Būsenos kintamasis(ieji)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Pasirinkite eiles:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "arba įveskite kintamojo vardą:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Pridėti šią eilę" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Eilės diagramoje:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Paleisti Monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrukcijos/Diegimas" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Įjungti paryškinimą" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Naujinimo dažnis" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagramos stulpeliai" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagramos išdėstymas" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Atstatyti numatytąsias reikšmes" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultatas" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Sugeneravo" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Duomenų failai" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Kita" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "Paleisti" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Iš viso užtruko:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Laikas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Uždaryti" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Laikas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Šios SQL užklausą pasižymėti kaip" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Nuorodos Antraštė" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Leisti kitiems vartotojams naudotis šia žyme" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10125,10 +10323,6 @@ msgstr "Išvalyti" msgid "Bookmark this SQL query:" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Leisti kitiems vartotojams naudotis šia žyme" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu" @@ -10267,7 +10461,7 @@ msgstr "Pažymėti turinčias perteklių" msgid "Sort" msgstr "Rūšiuoti" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Jokio" @@ -10427,7 +10621,7 @@ msgstr "Efektyvus" msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Užklausos klaida" @@ -10590,7 +10784,7 @@ msgstr "Klaida ZIP archyve:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" @@ -10649,7 +10843,7 @@ msgstr "Suskleisti/Išskleisti" msgid "Toggle relation lines" msgstr "Sąryšio pasirinkimui, paspauskite:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importuoti/eksportuoti koordinates PDF schemai" @@ -10713,43 +10907,43 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Puslapis sukurtas" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Puslapio kūrimas nepavyko" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Puslapis" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importuoti iš pasirinkto puslapio" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Eksportuoti pasirinktą puslapį" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Sukurti puslapį ir eksportuoti į jį" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Naujas puslapio vardas: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export to selected page" msgid "Export/Import to scale:" msgstr "Eksportuoti pasirinktą puslapį" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "rekomenduojame" @@ -10779,7 +10973,7 @@ msgstr "Vidinis sąryšis įdėtas" msgid "Relation deleted" msgstr "Sąryšis ištrintas" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11223,194 +11417,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitor instrukcijos" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Pridėti diagramą" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "Pašalinti diagramą" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Būsenos kintamasis(ieji)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Pasirinkite eiles:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "arba įveskite kintamojo vardą:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Pridėti šią eilę" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Eilės diagramoje:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Registruoti statistiką" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Pasirinktas laiko tarpas:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Užklausos analizatorius" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekundė" -msgstr[1] "Sekundės" -msgstr[2] "Sekundžių" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minutė" -msgstr[1] "Minutė" -msgstr[2] "Minučių" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Paleisti Monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrukcijos/Diegimas" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Įjungti paryškinimą" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Naujinimo dažnis" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagramos stulpeliai" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagramos išdėstymas" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Atstatyti numatytąsias reikšmes" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12077,9 +12083,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Prašome interneto serveryje phpMyAdmin pagrindiniame kataloge sukurti " -"įrašomą [em]config[/em] katalogą kaip parašyta " -"[doc@setup_script]dokumentacijoje[/doc]. Kitaip Jūs galėsite jį tik " -"parsisiųsti ir peržiūrėti." +"įrašomą [em]config[/em] katalogą kaip parašyta [doc@setup_script]" +"dokumentacijoje[/doc]. Kitaip Jūs galėsite jį tik parsisiųsti ir peržiūrėti." #: setup/frames/index.inc.php:60 msgid "" @@ -12096,8 +12101,8 @@ msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." msgstr "" -"Jeigu Jūsų serveris sukonfigūruotas priimti HTTPS užklausas eikite [a@" -"%s]čia[/a] tam, kad naudoti saugų susijungimą." +"Jeigu Jūsų serveris sukonfigūruotas priimti HTTPS užklausas eikite [a@%s]čia" +"[/a] tam, kad naudoti saugų susijungimą." #: setup/frames/index.inc.php:68 msgid "Insecure connection" @@ -12332,8 +12337,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Jūs nustatėte [kbd]config[/kbd] identifikacijos tipą ir įtraukėte naudotojo " "vardą ir slaptažodį automatiniam prisijungimui, tai nėra pageidaujama " @@ -12396,47 +12401,37 @@ msgstr "" msgid "Wrong data" msgstr "Nėra duomenų" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Žymė %s sukurta" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Patikrintas SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Šios SQL užklausą pasižymėti kaip" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Nuorodos Antraštė" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data" @@ -12673,148 +12668,148 @@ msgstr "Pasirinkite laukus peržiūrai" msgid "No column selected." msgstr "Nepasirinkti įrašai" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL užklausos įvykdytos." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Užkomentuokite (panaikinkite) šias dvi eilutes jeigu Jums jų nereikia." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Ištrinti sekimo duomenis iš ataskaitos" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nėra duomenų" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL vykdymas" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksportuoti kaip %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Rodyti versijas" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Keisti nustatymus %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktyvuoti dabar" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Sukurti versiją" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Sukurti versiją" @@ -13202,8 +13197,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13336,8 +13331,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14049,6 +14044,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#~ msgid "Headers every %s rows" +#~ msgstr "Antraštės kas %s eilučių" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -14281,8 +14279,8 @@ msgstr "MyISAM concurrent įterpimai" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Tai įjungus, puslapis patalpintas skirtingame domene gali iškviesti " -#~ "phpMyAdmin vidiniame rėmelyje, o tai yra potenciali [strong]saugumo " -#~ "spraga[/strong], leidžianti tarprėmelinius scenarijų išpuolius" +#~ "phpMyAdmin vidiniame rėmelyje, o tai yra potenciali [strong]saugumo spraga" +#~ "[/strong], leidžianti tarprėmelinius scenarijų išpuolius" #~ msgid "Allow third party framing" #~ msgstr "Leisti trečių šalių rėmelius" diff --git a/po/lv.po b/po/lv.po index 7c2c487a26..a82258eb2e 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Latvian \n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Meklēt" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Meklēt" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Aiziet!" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Atslēgas nosaukums" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Apraksts" @@ -109,7 +109,7 @@ msgstr "" "Fails %s nav pieejams šajā sistēmā, vairāk informācijai lūdzu apmeklējiet " "www.phpmyadmin.net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Datubāze %1$s tika izveidota." @@ -139,7 +139,7 @@ msgstr "Komentārs tabulai" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Lauks" @@ -162,7 +162,7 @@ msgstr "Lauks" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tips" @@ -179,7 +179,7 @@ msgstr "Tips" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulle" @@ -194,7 +194,7 @@ msgstr "Nulle" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Noklusēts" @@ -236,9 +236,9 @@ msgstr "Komentāri" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nē" @@ -263,9 +263,9 @@ msgstr "Nē" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Jā" @@ -320,7 +320,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabula" @@ -405,7 +405,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Datubāze" @@ -413,17 +413,17 @@ msgstr "Datubāze" msgid "Last version" msgstr "Pēdējā versija" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Izveidots" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Atjaunots" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Statuss" @@ -436,7 +436,7 @@ msgstr "Statuss" msgid "Action" msgstr "Darbība" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Rādīt" @@ -452,11 +452,11 @@ msgstr "" msgid "Drop" msgstr "Likvidēt" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktīvs" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "neaktīvs" @@ -464,11 +464,11 @@ msgstr "neaktīvs" msgid "Versions" msgstr "Versijas" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Tikai struktūra" @@ -629,8 +629,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -670,7 +670,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nevar ielādēt importētos spraudņus, lūdzu pārbaudi savu instalāciju!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Grāmatzīme %s izveidota" @@ -692,7 +692,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -904,7 +904,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." @@ -913,7 +913,7 @@ msgstr "\"DROP DATABASE\" komanda ir aizliegta." msgid "Do you really want to execute \"%s\"?" msgstr "Vai Jūs tiešām gribat izpildīt \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" @@ -1002,8 +1002,8 @@ msgstr "Atjauno privilēģijas" msgid "Removing Selected Users" msgstr "Dzēš izvēlētos lietotājus" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Aizvērt" @@ -1129,13 +1129,13 @@ msgstr "baiti" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1174,7 +1174,7 @@ msgid "Traffic" msgstr "Datu apmaiņa" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Uzstādījumi" @@ -1194,13 +1194,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nav" @@ -1294,7 +1295,7 @@ msgstr "Mainīt uzstādījumus" msgid "Current settings" msgstr "Pašreizējie uzstādījumi" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagrammas virsraksts" @@ -1376,7 +1377,7 @@ msgstr "Izskaidrot izvadu" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Laiks" @@ -1478,7 +1479,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imports" @@ -1537,7 +1538,7 @@ msgid "Cancel" msgstr "Atcelt" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Ielādē" @@ -1698,7 +1699,7 @@ msgstr "Slēpt pieprasījumu logu" msgid "Show query box" msgstr "Rādīt pieprasījumu logu" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1711,7 +1712,7 @@ msgstr "Labot" msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1797,7 +1798,7 @@ msgstr "Satura rādītājs" msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopēt" @@ -1813,7 +1814,7 @@ msgstr "Līnija" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Ģeometrija" @@ -2359,31 +2360,31 @@ msgstr "stundā" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Augošā secībā" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2544,14 +2545,14 @@ msgstr "Apskatīt" msgid "Delete the matches for the %s table?" msgstr "Dati tabulai" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Dzēst" @@ -2660,17 +2661,11 @@ msgstr "horizontālā (pagriezti virsraksti)" msgid "vertical" msgstr "vertikālā" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izpildīt iegrāmatoto vaicājumu" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Kārtot pēc atslēgas" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2698,98 +2693,98 @@ msgstr "Kārtot pēc atslēgas" msgid "Options" msgstr "Darbības" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Daļēji teksti" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pilni teksti" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Relāciju shēma" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relāciju shēma" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Nogalināt" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Var būt aptuvens skaits. Skatīt [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "vaicājumā" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "kopā" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2798,8 +2793,8 @@ msgstr "Vaicājums ilga %01.4f s" msgid "With selected:" msgstr "Ar iezīmēto:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2810,48 +2805,48 @@ msgstr "Ar iezīmēto:" msgid "Check All" msgstr "Iezīmēt visu" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksports" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Izdrukas versija" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Links nav atrasts" @@ -2929,38 +2924,38 @@ msgstr "Nav definēti indeksi!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitāte" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Izkārtojumi" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Komentāri" @@ -3001,7 +2996,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktūra" @@ -3153,16 +3148,16 @@ msgstr[1] "Rindas nav iezīmētas" msgid "Error while creating PDF:" msgstr "Ļauj lasīt datus." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Nav tabulu" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3411,7 +3406,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" @@ -3513,14 +3508,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3764,7 +3759,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3825,7 +3820,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4311,8 +4306,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4879,9 +4874,8 @@ msgstr "Lapas numurs:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5650,8 +5644,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5857,8 +5851,8 @@ msgstr "Analizēt tabulu" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5876,8 +5870,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5981,8 +5975,8 @@ msgstr "Parametrs" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6002,8 +5996,8 @@ msgstr "Servera versija" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6198,8 +6192,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" @@ -6617,7 +6611,7 @@ msgstr "Datubāzes" msgid "Table(s):" msgstr "Tabulas" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6673,8 +6667,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7191,8 +7185,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7210,7 +7204,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." @@ -7334,11 +7328,11 @@ msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7395,7 +7389,7 @@ msgstr "Pievienot jaunu lauku" msgid "Add prefix" msgstr "Pievienot jaunu lauku" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7738,17 +7732,17 @@ msgid "Drop the database (DROP)" msgstr "Nav datubāzu" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tikai struktūra" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktūra un dati" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tikai dati" @@ -7923,8 +7917,8 @@ msgstr "Laipni lūgti %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8210,7 +8204,7 @@ msgstr "Likt kolonnu nosaukumus pirmajā rindā" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8218,7 +8212,7 @@ msgstr "Hosts" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8236,7 +8230,7 @@ msgstr "PHP Versija" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9415,7 +9409,7 @@ msgstr "Atribūti" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstras" @@ -9590,7 +9584,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Persiešu" @@ -10069,13 +10063,13 @@ msgstr "Lietotāju pārskats" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " -"%spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" +"spārlādēt privilēģijas%s pirms Jūs turpināt." #: libraries/server_privileges.lib.php:3036 msgid "The selected user was not found in the privilege table." @@ -10085,60 +10079,275 @@ msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundē" +msgstr[1] "sekundē" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "lietošanā" +msgstr[1] "lietošanā" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Rindas statistika" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Iezīmēt visu" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Vaicājuma tips" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Pievienot jaunu lauku" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Pārsaukt datubāzi par" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Izvēlieties tabulas" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Pievienot jaunu lietotāju" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL vaicājums" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "S" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Atjaunot" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Pievienot/Dzēst laukus (kolonnas)" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultāts" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Uzģenerēja" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Tikai dati" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Cits" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Statuss" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Kopējais laiks:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Laiks" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Aizvērt" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Laiks" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Saglabāt šo SQL vaicājumu" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Nosaukums" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10160,10 +10369,6 @@ msgstr "Kalendārs" msgid "Bookmark this SQL query:" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10307,7 +10512,7 @@ msgstr "Iezīmēt tabulas ar pārtēriņu" msgid "Sort" msgstr "Kārtošana" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10478,7 +10683,7 @@ msgstr "Efektīvs" msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10646,7 +10851,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" @@ -10704,7 +10909,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Tradicionāla ķīniešu" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10779,52 +10984,52 @@ msgstr "Izveidot" msgid "Active options" msgstr "Tabulas opcijas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabula %s tika izdzēsta" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Aizņem" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importēt failus" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Rindas nav iezīmētas" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izveidot jaunu indeksu" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Lietotājvārds" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Rindas nav iezīmētas" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10854,7 +11059,7 @@ msgstr "Iekšējās relācijas" msgid "Relation deleted" msgstr "Relāciju pārskats" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11278,206 +11483,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Pievienot jaunu lauku" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Pārsaukt datubāzi par" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Izvēlieties tabulas" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Pievienot jaunu lietotāju" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL vaicājums" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Rindas statistika" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Iezīmēt visu" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Vaicājuma tips" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "sekundē" -msgstr[1] "sekundē" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "lietošanā" -msgstr[1] "lietošanā" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "S" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Atjaunot" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Pievienot/Dzēst laukus (kolonnas)" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12374,8 +12379,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12418,49 +12423,39 @@ msgstr "" msgid "Wrong data" msgstr "Nav datubāzu" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Grāmatzīme %s izveidota" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Saglabāt šo SQL vaicājumu" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Nosaukums" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12701,148 +12696,148 @@ msgstr "Izvēlieties, kuru lauku rādīt" msgid "No column selected." msgstr "Rindas nav iezīmētas" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Ļauj ievietot un mainīt datus." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nav datubāzu" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Dati" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Servera versija" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Servera versija" @@ -13217,8 +13212,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13346,8 +13341,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14008,6 +14003,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izpildīt iegrāmatoto vaicājumu" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/mk.po b/po/mk.po index ad218d7be1..b9133d62f8 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-04-25 15:32+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian \n" -"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Пребарување" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Пребарување" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Име на клуч" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Опис" @@ -107,7 +107,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Базата на податоци %1$s е креирана." @@ -137,7 +137,7 @@ msgstr "Коментар на табелата" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -162,7 +162,7 @@ msgstr "Имиња на колони" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тип" @@ -179,7 +179,7 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -194,7 +194,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Стандардно" @@ -236,9 +236,9 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Не" @@ -263,9 +263,9 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Да" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Табела" @@ -408,7 +408,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "База на податоци" @@ -416,17 +416,17 @@ msgstr "База на податоци" msgid "Last version" msgstr "Последна Верзија" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Креирано" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Ажурирано" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Статус" @@ -439,7 +439,7 @@ msgstr "Статус" msgid "Action" msgstr "Акција" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Прикажи" @@ -455,11 +455,11 @@ msgstr "Избришете го податоците за тракирање о msgid "Drop" msgstr "Бриши" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -468,11 +468,11 @@ msgstr "" msgid "Versions" msgstr "Персиски" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" @@ -637,8 +637,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -678,7 +678,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -700,7 +700,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -919,7 +919,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." @@ -929,7 +929,7 @@ msgstr "\"DROP DATABASE\" командата е оневозможена." msgid "Do you really want to execute \"%s\"?" msgstr "Дали навистина сакате да " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" @@ -1031,8 +1031,8 @@ msgstr "Глобални привилегии" msgid "Removing Selected Users" msgstr "Избриши ги селектираните корисници" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1171,13 +1171,13 @@ msgstr "бајти" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1218,7 +1218,7 @@ msgid "Traffic" msgstr "Сообраќај" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1242,13 +1242,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "нема" @@ -1348,7 +1349,7 @@ msgstr "Општи особини на релациите" msgid "Current settings" msgstr "Општи особини на релациите" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1438,7 +1439,7 @@ msgstr "Објасни SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Време" @@ -1549,7 +1550,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1613,7 +1614,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Локален" @@ -1796,7 +1797,7 @@ msgstr "SQL упит" msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1809,7 +1810,7 @@ msgstr "Промени" msgid "No rows selected" msgstr "Нема селектирани записи" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1901,7 +1902,7 @@ msgstr "Големина на покажувачите на податоци" msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Копирај" @@ -1919,7 +1920,7 @@ msgstr "Линиите се завршуваат со" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2464,31 +2465,31 @@ msgstr "на час" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Растечки редослед" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2651,14 +2652,14 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "избриши" @@ -2768,17 +2769,11 @@ msgstr "хоризонтален (ротирани заглавија)" msgid "vertical" msgstr "вертикален" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Изврши запамтен упит" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Подредување по клуч" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2806,100 +2801,100 @@ msgstr "Подредување по клуч" msgid "Options" msgstr "Операции" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Дел на текстот" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Полн текст" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Релациона шема" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона шема" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Прекини" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" "Бројот на записи може да биде приближен. За подетални информации види " "[doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "во упитот" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Приказ на записи од" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "вкупно" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2908,8 +2903,8 @@ msgstr "време на извршување на упитот %01.4f секун msgid "With selected:" msgstr "Обележаното:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2920,48 +2915,48 @@ msgstr "Обележаното:" msgid "Check All" msgstr "обележи ги сите" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Преглед за печатење" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -3041,38 +3036,38 @@ msgstr "Клучот не е дефиниран!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Клучеви" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Единствен" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Подредување" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Коментари" @@ -3113,7 +3108,7 @@ msgstr "Поглед" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3265,16 +3260,16 @@ msgstr[1] "Нема селектирани записи" msgid "Error while creating PDF:" msgstr "Дозволува читање на податоци." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Нема табела" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3524,7 +3519,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" @@ -3626,14 +3621,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3877,7 +3872,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимална големина: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3940,7 +3935,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складишта" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4427,8 +4422,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5001,9 +4996,8 @@ msgstr "Број на страници:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5775,8 +5769,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5982,8 +5976,8 @@ msgstr "Анализа на табелата" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -6001,8 +5995,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6106,8 +6100,8 @@ msgstr "Име" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6128,8 +6122,8 @@ msgstr "Режим на автоматско опоравување" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6324,8 +6318,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Корисничко име:" @@ -6743,7 +6737,7 @@ msgstr "База на податоци" msgid "Table(s):" msgstr "Табели" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6799,8 +6793,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7335,8 +7329,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7354,7 +7348,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." @@ -7480,11 +7474,11 @@ msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7541,7 +7535,7 @@ msgstr "Додади ново поле" msgid "Add prefix" msgstr "Додади ново поле" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7882,17 +7876,17 @@ msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Само структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структура и податоци" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Само податоци" @@ -8067,8 +8061,8 @@ msgstr "%s Добредојдовте" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8355,7 +8349,7 @@ msgstr "Стави ги имињата на полињата во првата #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8363,7 +8357,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8381,7 +8375,7 @@ msgstr "PHP верзија" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9581,7 +9575,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Дополнително" @@ -9756,7 +9750,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Персиски" @@ -10239,8 +10233,8 @@ msgstr "Преглед на корисници" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " @@ -10256,57 +10250,272 @@ msgstr "Изабраниот корисник не е пронајден во т msgid "You have added a new user." msgstr "Додадовте нов корисник." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "во секунда" +msgstr[1] "во секунда" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "се користи" +msgstr[1] "се користи" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Статистики за записите" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "избери се" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Вид на упит" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Додади ново поле" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Избриши ја базата на податоци." + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Избери табели" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Додади нов корисник" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL упит" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Саб" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Освежи" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Додади/избриши колона" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL резултат" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Генерирал" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Податотеки со податоци" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Статус" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Вкупно" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Запамти SQL упит" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Назив" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "дади дозвола на секој корисник да пристапува на овој упит" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10328,10 +10537,6 @@ msgstr "Календар" msgid "Bookmark this SQL query:" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "дади дозвола на секој корисник да пристапува на овој упит" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10470,7 +10675,7 @@ msgstr "табели кои имаат пречекорувања" msgid "Sort" msgstr "Подредуваање" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10641,7 +10846,7 @@ msgstr "Ефективни" msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10810,7 +11015,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Измените се сочувани" @@ -10868,7 +11073,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Традиционален кинески" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10943,52 +11148,52 @@ msgstr "Креирај" msgid "Active options" msgstr "Опции на табелата" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Табелата %s е избришана" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "страница" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз на податотека" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Нема селектирани записи" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Креирај нов клуч" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Назив на корисник" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Нема селектирани записи" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -11018,7 +11223,7 @@ msgstr "Внатрешни релации" msgid "Relation deleted" msgstr "Релационен поглед" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11441,206 +11646,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Додади ново поле" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Избриши ја базата на податоци." - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Избери табели" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Додади нов корисник" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL упит" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Статистики за записите" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "избери се" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Вид на упит" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "во секунда" -msgstr[1] "во секунда" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "се користи" -msgstr[1] "се користи" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Саб" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Освежи" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Додади/избриши колона" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12538,8 +12543,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12582,47 +12587,37 @@ msgstr "" msgid "Wrong data" msgstr "Базата на податоци не постои" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Запамти SQL упит" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Назив" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12865,149 +12860,149 @@ msgstr "Избери полиња за прикажување" msgid "No column selected." msgstr "Нема селектирани записи" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозволува вметнување и замена на података." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базата на податоци не постои" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Податоци" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Избришете го податоците за тракирање од табелава" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Верзија на серверот" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Верзија на серверот" @@ -13384,8 +13379,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13514,8 +13509,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14203,6 +14198,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Изврши запамтен упит" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ml.po b/po/ml.po index b7df539ab0..c5bf4e0ab8 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" -"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "തിരയൂ" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "തിരയൂ" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "പോകൂ" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "കീനാമം" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "വിവരണം" @@ -105,7 +105,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." @@ -135,7 +135,7 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "നിര" @@ -158,7 +158,7 @@ msgstr "നിര" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "തരം" @@ -175,7 +175,7 @@ msgstr "തരം" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "ശൂന്യം" @@ -190,7 +190,7 @@ msgstr "ശൂന്യം" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "സ്വതേ" @@ -232,9 +232,9 @@ msgstr "അഭിപ്രായങ്ങൾ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "ഇല്ല" @@ -259,9 +259,9 @@ msgstr "ഇല്ല" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "അതേ" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "പട്ടിക" @@ -395,7 +395,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "" @@ -403,17 +403,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -426,7 +426,7 @@ msgstr "" msgid "Action" msgstr "" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "പ്രദർശിപ്പിക്കുക" @@ -442,11 +442,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -454,11 +454,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -602,8 +602,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -643,7 +643,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -665,7 +665,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -847,7 +847,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -856,7 +856,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -940,8 +940,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1064,13 +1064,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1111,7 +1111,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1131,13 +1131,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1230,7 +1231,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1310,7 +1311,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1403,7 +1404,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1460,7 +1461,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1608,7 +1609,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1621,7 +1622,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1703,7 +1704,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1719,7 +1720,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2190,31 +2191,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ആരോഹണം" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2366,14 +2367,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2462,16 +2463,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2498,89 +2494,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2589,8 +2585,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2601,45 +2597,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2714,38 +2710,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "നിബന്ധന" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2785,7 +2781,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2930,15 +2926,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3176,7 +3172,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3273,14 +3269,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3516,7 +3512,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3575,7 +3571,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4033,8 +4029,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4557,9 +4553,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5296,8 +5291,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5490,8 +5485,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5508,8 +5503,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5606,8 +5601,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5626,8 +5621,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5813,8 +5808,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6202,7 +6197,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6251,8 +6246,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6743,8 +6738,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6760,7 +6755,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6877,11 +6872,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6928,7 +6923,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7257,17 +7252,17 @@ msgid "Drop the database (DROP)" msgstr "വിവരശേഖരം ഉപേക്ഷിക്കുക (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "ഘടന മാത്രം" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ഘടനയും വിവരവും" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "വിവരം മാത്രം" @@ -7430,8 +7425,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7675,13 +7670,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7695,7 +7690,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database comment: " msgid "Database:" @@ -8727,7 +8722,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8888,7 +8883,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9329,8 +9324,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9341,46 +9336,239 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9399,10 +9587,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9528,7 +9712,7 @@ msgstr "" msgid "Sort" msgstr "തരംതിരിക്കുക" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9686,7 +9870,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9825,7 +10009,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9881,7 +10065,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9939,39 +10123,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9999,7 +10183,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10404,186 +10588,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11458,8 +11462,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11500,43 +11504,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11744,143 +11740,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12230,8 +12226,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12349,8 +12345,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/mn.po b/po/mn.po index d360b26eff..8793e34be3 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-04-25 15:34+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian \n" -"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Хайх" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Хайх" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Яв" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Тайлбар" @@ -107,7 +107,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "" @@ -137,7 +137,7 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -162,7 +162,7 @@ msgstr "Баганын нэрс" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Төрөл" @@ -179,7 +179,7 @@ msgstr "Төрөл" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Хоосон" @@ -194,7 +194,7 @@ msgstr "Хоосон" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Анхдагч" @@ -236,9 +236,9 @@ msgstr "Тайлбар" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Үгүй" @@ -263,9 +263,9 @@ msgstr "Үгүй" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Тийм" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Хүснэгт" @@ -408,7 +408,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "ӨС" @@ -416,17 +416,17 @@ msgstr "ӨС" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Статус" @@ -439,7 +439,7 @@ msgstr "Статус" msgid "Action" msgstr "Үйлдэл" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Харах" @@ -455,11 +455,11 @@ msgstr "" msgid "Drop" msgstr "Устгах" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -467,11 +467,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -631,8 +631,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -672,7 +672,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" @@ -694,7 +694,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -916,7 +916,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." @@ -926,7 +926,7 @@ msgstr "\"ӨС устгах\" нь хаалттай." msgid "Do you really want to execute \"%s\"?" msgstr "Та үнэхээр " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" @@ -1029,8 +1029,8 @@ msgstr "Онцгой эрхүүдийг дахин дуудах" msgid "Removing Selected Users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1173,13 +1173,13 @@ msgstr "Байт" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "кБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1221,7 +1221,7 @@ msgid "Traffic" msgstr "Гуйвуулга" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1245,13 +1245,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Байхгүй" @@ -1351,7 +1352,7 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "Current settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1443,7 +1444,7 @@ msgstr "SQL тайлбар" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Цаг" @@ -1555,7 +1556,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" @@ -1622,7 +1623,7 @@ msgid "Cancel" msgstr "Болих" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1810,7 +1811,7 @@ msgstr "асуултад" msgid "Show query box" msgstr "SQL асуудал харуулах" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1823,7 +1824,7 @@ msgstr "Засах" msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1917,7 +1918,7 @@ msgstr "Өгөгдөл заагчийн хэмжээ" msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Хуулах" @@ -1935,7 +1936,7 @@ msgstr "Шугамыг төгсгөгч" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2482,31 +2483,31 @@ msgstr "цагт" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Үсгийн хэмжээ" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Өсөхөөр" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2669,14 +2670,14 @@ msgstr "Хөтлөх" msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Устгах" @@ -2785,17 +2786,11 @@ msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" msgid "vertical" msgstr "босоо" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2822,97 +2817,97 @@ msgstr "Түлхүүрээр эрэмбэлэх" msgid "Options" msgstr "Сонголтууд" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Бичвэрийн зарим хэсэг" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Бүтэн бичвэр" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Хамааралтай схем" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Алах" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "асуултад" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "Нийт" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2921,8 +2916,8 @@ msgstr "Асуулт нь %01.4f сек авлаа" msgid "With selected:" msgstr "Сонгогдсонтой:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2933,49 +2928,49 @@ msgstr "Сонгогдсонтой:" msgid "Check All" msgstr "Бүгдийг чагтлах" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Гаргах" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Хэвлэхээр харах" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -3052,38 +3047,38 @@ msgstr "Индекс тодорхойлогдоогүй!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индексүүд" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Ерөнхий" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Жишилт" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -3123,7 +3118,7 @@ msgstr "Харц" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Бүтэц" @@ -3274,19 +3269,19 @@ msgstr[1] "Сонгогдсон мөргүй" msgid "Error while creating PDF:" msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Select Tables" msgid "Recent tables" msgstr "Хүснэгтүүд сонго" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3537,7 +3532,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3640,14 +3635,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3893,7 +3888,7 @@ msgstr "" msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3956,7 +3951,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4445,8 +4440,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5013,9 +5008,8 @@ msgstr "Хуудасны дугаар:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5784,8 +5778,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5986,8 +5980,8 @@ msgstr "Хүснэгтийг задлах" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -6004,8 +5998,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6108,8 +6102,8 @@ msgstr "Баримтжуулал" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6130,8 +6124,8 @@ msgstr "Авто сэргээх горим" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6327,8 +6321,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6746,7 +6740,7 @@ msgstr "Өгөгдлийн сангууд" msgid "Table(s):" msgstr "Хүснэгт" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6806,12 +6800,12 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " -"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" +"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7355,8 +7349,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7374,7 +7368,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." @@ -7500,11 +7494,11 @@ msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7561,7 +7555,7 @@ msgstr "Шинэ талбар нэмэх" msgid "Add prefix" msgstr "Шинэ талбар нэмэх" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7904,17 +7898,17 @@ msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Зөвхөн бүтэц" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Зөвхөн өгөгдөл" @@ -8087,11 +8081,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " -"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" +"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8372,7 +8366,7 @@ msgstr "Эхний мөрт талбаруудын нэрийг тавих" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8380,7 +8374,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8398,7 +8392,7 @@ msgstr "PHP хувилбар" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8788,8 +8782,8 @@ msgstr "" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 #, fuzzy #| msgid "" -#| "ys the contents of the field as-is, without running it through " -#| "ecialchars(). That is, the field is assumed to contain valid HTML." +#| "ys the contents of the field as-is, without running it through ecialchars" +#| "(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -9593,7 +9587,7 @@ msgstr "Атрибутууд" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Нэмэлт" @@ -9768,7 +9762,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -10236,8 +10230,8 @@ msgstr "User overview" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -10252,58 +10246,275 @@ msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүс msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундэд" +msgstr[1] "секундэд" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "хэрэглэгдэж байна" +msgstr[1] "хэрэглэгдэж байна" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "Мөрийн статистик" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Бүгдийг сонгох" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Асуултын төрөл" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Мэдээлэл" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Шинэ талбар нэмэх" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Өгөгдлийн санг д.нэрлэх нь" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Хүснэгтүүд сонго" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Хүснэгтийн буруу нэр" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "Шинэ хэрэглэгч нэмэх" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Да.дуудах" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Багана нэмэх/устгах" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-үр дүн" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Үүсгэгч" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Өгөгдлийн файлууд" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Бя" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Нийт" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Цаг" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Цаг" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Хаяг" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10324,10 +10535,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих" @@ -10459,7 +10666,7 @@ msgstr "Дээдхийг шалгах" msgid "Sort" msgstr "Эрэмбэлэх" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10631,7 +10838,7 @@ msgstr "Эффекттэй" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10802,7 +11009,7 @@ msgstr "ZIP архивт байгаа алдаа:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" @@ -10860,7 +11067,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Холбоо сонгохдоо, дарах нь :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Оруулах/Гаргах PDF схемийн координат" @@ -10936,51 +11143,51 @@ msgstr "Үүсгэх" msgid "Active options" msgstr "Хүснэгтийн сонголтууд" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "хуудсууд" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файл оруулах" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Шинэ индекс үүсгэх" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Хэрэглэгчийн нэр" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "сайшаагдсан" @@ -11008,7 +11215,7 @@ msgstr "Дотоод холбоо нэмэгдэв" msgid "Relation deleted" msgstr "Холбоо устав" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11430,208 +11637,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Мэдээлэл" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Шинэ талбар нэмэх" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Өгөгдлийн санг д.нэрлэх нь" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Хүснэгтүүд сонго" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Хүснэгтийн буруу нэр" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "Шинэ хэрэглэгч нэмэх" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "Мөрийн статистик" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Бүгдийг сонгох" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Асуултын төрөл" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "секундэд" -msgstr[1] "секундэд" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "хэрэглэгдэж байна" -msgstr[1] "хэрэглэгдэж байна" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Да.дуудах" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Багана нэмэх/устгах" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12575,8 +12580,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12619,49 +12624,39 @@ msgstr "" msgid "Wrong data" msgstr "ӨС байхгүй" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Хаяг" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12903,148 +12898,148 @@ msgstr "Харуулах талбарыг соль" msgid "No column selected." msgstr "Сонгогдсон мөргүй" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "ӨС байхгүй" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Ерөнхий хамаатай онцлог" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -13429,8 +13424,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13562,8 +13557,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14277,6 +14272,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -14678,8 +14678,8 @@ msgstr "ХИ. давхацсан холболтууд" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" -#~ "%s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" +#~ "s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index a124fb69ea..a956872966 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay \n" -"Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Cari" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "Cari" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Pergi" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nama Kekunci" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Keterangan" @@ -108,7 +108,7 @@ msgstr "" "Fail %s tidak ada di dalam sistem, sila ke laman sesawang www.phpmyadmin.net " "untuk maklumat lanjut." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Pengkalan data %1$s telah dijana." @@ -138,7 +138,7 @@ msgstr "Komen jadual" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy msgid "Column" msgstr "Pangkalan data %1$s telah dijana." @@ -162,7 +162,7 @@ msgstr "Pangkalan data %1$s telah dijana." #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Jenis" @@ -179,7 +179,7 @@ msgstr "Jenis" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -194,7 +194,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Asal" @@ -236,9 +236,9 @@ msgstr "Komen" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Tidak" @@ -263,9 +263,9 @@ msgstr "Tidak" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ya" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Jadual" @@ -399,7 +399,7 @@ msgstr "Jadual dikesan" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Pangkalan Data" @@ -407,17 +407,17 @@ msgstr "Pangkalan Data" msgid "Last version" msgstr "Versi terakhir" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Dibina" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "dikemaskini" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -430,7 +430,7 @@ msgstr "Status" msgid "Action" msgstr "Aksi" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Papar" @@ -447,11 +447,11 @@ msgstr "Padam mengesan data untuk jadual ini" msgid "Drop" msgstr "Gugur" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "tidak aktif" @@ -459,11 +459,11 @@ msgstr "tidak aktif" msgid "Versions" msgstr "Versi" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Laporan penjejak" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Paparan struktur" @@ -622,11 +622,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Anda mungkin cuba memuatnaik fail yang terlalu besar. Sila rujuk " -"%sdocumentation%s untuk mengetahui had yang dibenarkan." +"Anda mungkin cuba memuatnaik fail yang terlalu besar. Sila rujuk %" +"sdocumentation%s untuk mengetahui had yang dibenarkan." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -667,7 +667,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -689,7 +689,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -899,7 +899,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." @@ -909,7 +909,7 @@ msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." msgid "Do you really want to execute \"%s\"?" msgstr "Adakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1002,8 +1002,8 @@ msgstr "Tiada Privilej" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1137,13 +1137,13 @@ msgstr "Bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1184,7 +1184,7 @@ msgid "Traffic" msgstr "Kesibukan" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1207,13 +1207,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Tiada" @@ -1313,7 +1314,7 @@ msgstr "Ciri-ciri hubungan am" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy msgid "Chart Title" msgstr "Tiada Jadual" @@ -1400,7 +1401,7 @@ msgstr "Terangkan Kod SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Masa" @@ -1507,7 +1508,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1571,7 +1572,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Local" @@ -1748,7 +1749,7 @@ msgstr "kueri-SQL" msgid "Show query box" msgstr "kueri-SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1761,7 +1762,7 @@ msgstr "Ubah" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1853,7 +1854,7 @@ msgstr "Kandungan" msgid "Ignore" msgstr "Abai" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1869,7 +1870,7 @@ msgstr "Rentetan talian" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometri" @@ -2412,31 +2413,31 @@ msgstr "per jam" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Menaik" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2588,14 +2589,14 @@ msgstr "Lungsur" msgid "Delete the matches for the %s table?" msgstr "Padam padanan untuk jadual %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Padam" @@ -2698,16 +2699,11 @@ msgstr "" msgid "vertical" msgstr "menegak" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2735,97 +2731,97 @@ msgstr "" msgid "Options" msgstr "Operasi" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Sebahagian Teks" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Teks Penuh" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Skema Hubungan" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema Hubungan" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy msgid "Hide browser transformation" msgstr "Informasi MasaJana" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Bunuh" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "pada kueri" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Papar baris" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "jumlah" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2834,8 +2830,8 @@ msgstr "" msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2846,48 +2842,48 @@ msgstr "Dengan pilihan:" msgid "Check All" msgstr "Tanda Semua" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Paparan Cetak" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -2964,38 +2960,38 @@ msgstr "Tiada indeks ditafrifkan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinaliti" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Pengumpulan" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Komen" @@ -3036,7 +3032,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -3184,16 +3180,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Tiada Jadual" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3444,7 +3440,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3546,14 +3542,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3796,7 +3792,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3857,7 +3853,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4340,8 +4336,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4899,9 +4895,8 @@ msgstr "Muka Surat:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5657,8 +5652,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5863,8 +5858,8 @@ msgstr "Analyze table" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5882,8 +5877,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5985,8 +5980,8 @@ msgstr "Penyataan" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6006,8 +6001,8 @@ msgstr "Versi Pelayan" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6201,8 +6196,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Namapengguna:" @@ -6619,7 +6614,7 @@ msgstr "pangkalan data" msgid "Table(s):" msgstr "Jadual-jadual" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6674,8 +6669,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7186,8 +7181,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7204,7 +7199,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)." @@ -7327,11 +7322,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7386,7 +7381,7 @@ msgstr "Ganti data jadual dengan fail" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7725,17 +7720,17 @@ msgid "Drop the database (DROP)" msgstr "Menggugurkan pangkalan data" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Struktur sahaja" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data sahaja" @@ -7905,8 +7900,8 @@ msgstr "Selamat Datang ke %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8177,7 +8172,7 @@ msgstr "Letakkan medan di baris pertama" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8185,7 +8180,7 @@ msgstr "Hos" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8203,7 +8198,7 @@ msgstr "Versi PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9306,7 +9301,7 @@ msgstr "Atribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9477,7 +9472,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Versi PHP" @@ -9934,8 +9929,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9946,56 +9941,269 @@ msgstr "" msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Records" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Rekod" +msgstr[1] "Rekod" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "sedang digunakan" +msgstr[1] "sedang digunakan" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistik Baris" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Sila pilih pangkalan data" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Jenis Kueri" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Tambah medan baru" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Tukarnama jadual ke" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Pilih Jadual" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Tambah Pengguna Baru" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "kueri-SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sab" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Dijana oleh" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Tambah/Padam Kolum Medan" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Hasil SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Dijana oleh" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Data sahaja" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Jumlah" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Masa" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Masa" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "andabuku kueri-SQL ini" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10016,10 +10224,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10163,7 +10367,7 @@ msgstr "" msgid "Sort" msgstr "Isih" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10330,7 +10534,7 @@ msgstr "Berkesan" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10495,7 +10699,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" @@ -10551,7 +10755,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10625,46 +10829,46 @@ msgstr "Cipta" msgid "Active options" msgstr "Aksi" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Jadual %s telah digugurkan" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Penggunaan" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Cipta indeks baru" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Kata Pengenalan" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10694,7 +10898,7 @@ msgstr "Ciri-ciri hubungan am" msgid "Relation deleted" msgstr "Paparan Hubungan" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11115,204 +11319,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Tambah medan baru" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Tukarnama jadual ke" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Pilih Jadual" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Tambah Pengguna Baru" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "kueri-SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistik Baris" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Sila pilih pangkalan data" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Jenis Kueri" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Records" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Rekod" -msgstr[1] "Rekod" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "sedang digunakan" -msgstr[1] "sedang digunakan" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sab" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Dijana oleh" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Tambah/Padam Kolum Medan" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12207,8 +12213,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12251,47 +12257,37 @@ msgstr "" msgid "Wrong data" msgstr "Tiada pangkalan data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "andabuku kueri-SQL ini" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Label" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12528,146 +12524,146 @@ msgstr "Pilih Medan untuk dipapar" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Tiada pangkalan data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versi Pelayan" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Versi Pelayan" @@ -13037,8 +13033,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13164,8 +13160,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/nb.po b/po/nb.po index 073870f2ab..bb7a2e772a 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-03-26 11:59+0200\n" "Last-Translator: Stian Berg \n" "Language-Team: Norwegian Bokmål \n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.5-dev\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Søk" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "Søk" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Utfør" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nøkkel" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beskrivelse" @@ -108,7 +108,7 @@ msgstr "" "Filen %s er ikke tilgjengelig på denne datamaskinen, vennligst besøk www." "phpmyadmin.net for mer informasjon." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." @@ -138,7 +138,7 @@ msgstr "Tabellkommentarer" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolonne" @@ -161,7 +161,7 @@ msgstr "Kolonne" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Type" @@ -178,7 +178,7 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -193,7 +193,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standard" @@ -235,9 +235,9 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nei" @@ -262,9 +262,9 @@ msgstr "Nei" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -315,7 +315,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabell" @@ -397,7 +397,7 @@ msgstr "Overvåkede tabeller" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Database" @@ -405,17 +405,17 @@ msgstr "Database" msgid "Last version" msgstr "Siste versjon" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Opprettet" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Oppdatert" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -428,7 +428,7 @@ msgstr "Status" msgid "Action" msgstr "Handling" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Vis" @@ -444,11 +444,11 @@ msgstr "Slett overvåkningsdata for denne tabellen" msgid "Drop" msgstr "Slett" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ikke aktiv" @@ -456,11 +456,11 @@ msgstr "ikke aktiv" msgid "Versions" msgstr "Versjoner" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Strukturøyeblikksbilde" @@ -618,11 +618,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Du forsøkte sannsynligvis å laste opp en fil som var for stor. Sjekk " -"%sdokumentasjonen%s for måter å omgå denne begrensningen på." +"Du forsøkte sannsynligvis å laste opp en fil som var for stor. Sjekk %" +"sdokumentasjonen%s for måter å omgå denne begrensningen på." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -668,7 +668,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" @@ -695,7 +695,7 @@ msgstr "" "at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du " "øker php tidsgrensen." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -922,7 +922,7 @@ msgstr "" "Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle " "problemer." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." @@ -931,7 +931,7 @@ msgstr "\"DROP DATABASE\"-uttrykk er avslått." msgid "Do you really want to execute \"%s\"?" msgstr "Vil du virkelig utføre \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -1015,8 +1015,8 @@ msgstr "Oppfrisker privilegiene" msgid "Removing Selected Users" msgstr "Fjern valgte brukere" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Lukk" @@ -1144,13 +1144,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1189,7 +1189,7 @@ msgid "Traffic" msgstr "Trafikk" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Innstillinger" @@ -1209,13 +1209,14 @@ msgstr "Legg graf til grid" msgid "Please add at least one variable to the series" msgstr "Legg minst én variabel til serien" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ingen" @@ -1315,7 +1316,7 @@ msgstr "Endre innstillinger" msgid "Current settings" msgstr "Nåværende innstillinger" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Fremstillings-tittel" @@ -1402,7 +1403,7 @@ msgstr "Forklar utdata" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tid" @@ -1501,7 +1502,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1558,7 +1559,7 @@ msgid "Cancel" msgstr "Avbryt" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laster" @@ -1708,7 +1709,7 @@ msgstr "Skjul spørringsboks" msgid "Show query box" msgstr "Vis spørringsboks" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1721,7 +1722,7 @@ msgstr "Rediger" msgid "No rows selected" msgstr "Ingen rader valgt" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1806,7 +1807,7 @@ msgstr "Datapunktinnhold" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopier" @@ -1822,7 +1823,7 @@ msgstr "Linjestreng" msgid "Polygon" msgstr "Polygon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometri" @@ -2298,31 +2299,31 @@ msgstr "per time" msgid "per day" msgstr "hver dag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Nåværende konfigurasjonsfil (%s) er ikke lesbar." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "Gale tillatelser på konfigurasjonsfilen, den burde ikke være skrivbar!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Fontstørrelse" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Stigende" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2476,14 +2477,14 @@ msgstr "Se på" msgid "Delete the matches for the %s table?" msgstr "Slett treffene for %s tabellen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Slett" @@ -2574,16 +2575,11 @@ msgstr "horisontal (roterte overskrifter)" msgid "vertical" msgstr "loddrett" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Topptekst hver %s. rad" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sorter etter nøkkel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2610,93 +2606,93 @@ msgstr "Sorter etter nøkkel" msgid "Options" msgstr "Innstillinger" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Delvise tekster" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Hele strenger" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relasjonsnøkkel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relasjonsvisningskolonne" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Vis binært innhold" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Vis binært innhold som HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Skjul nettlesertransformasjon" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Velkjent Tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Velkjent Binær" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Avslutt" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kan være unøyaktig. Se [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "i spørring" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Viser rader" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2705,8 +2701,8 @@ msgstr "Spørring tok %01.4f sek" msgid "With selected:" msgstr "Med avkrysset:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2717,45 +2713,45 @@ msgstr "Med avkrysset:" msgid "Check All" msgstr "Merk alle" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Opprett view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link ikke funnet" @@ -2804,8 +2800,8 @@ msgstr "Ukjent feil oppstod under filopplastingen." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Feil oppstod under forsøk på flytting av den opplastede fila, se " -"[doc@faq1-11]FAQ 1.11[/doc]" +"Feil oppstod under forsøk på flytting av den opplastede fila, se [doc@faq1-" +"11]FAQ 1.11[/doc]" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -2836,38 +2832,38 @@ msgstr "Ingen indeks definert!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indekser" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Sammenligning" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2909,7 +2905,7 @@ msgstr "Vis" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -3054,15 +3050,15 @@ msgstr[1] "%1$d rader innsatt." msgid "Error while creating PDF:" msgstr "Feil oppstod under oppretting av PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Kunne ikke lagre tabell" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tidligere tabeller" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Det er ikke noen nylig brukte tabeller" @@ -3310,7 +3306,7 @@ msgid "Maximum rows to plot" msgstr "Maks antall rader som kan framvises" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" @@ -3411,14 +3407,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3659,7 +3655,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3720,7 +3716,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Innebygd" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilering" @@ -4188,8 +4184,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Definerer hvilken type redigeringskontroll som skal brukes for CHAR og " -"VARCHAR kolonner; [kbd]input[/kbd] - tillater begrensning av lengde, " -"[kbd]textarea[/kbd] - tillater linjeskift i kolonner" +"VARCHAR kolonner; [kbd]input[/kbd] - tillater begrensning av lengde, [kbd]" +"textarea[/kbd] - tillater linjeskift i kolonner" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4197,8 +4193,8 @@ msgstr "CHAR kolonneredigering" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4604,8 +4600,8 @@ 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 "" -"Sorteringsrekkefølge for elementer i en fremmednøkkel nedfallsboks; " -"[kbd]content[/kbd] for refererte data, [kbd]id[/kbd] for nøkkelverdien" +"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:149 msgid "Foreign key dropdown order" @@ -4751,13 +4747,12 @@ msgstr "Sidetitler" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Spesifiser vindustittelen til nettleseren. Se forøvrig " -"[doc@cfg_TitleTable]dokumentasjon[/doc] for spesielle strenger som kan tas i " -"bruk for å tilgang til spesialverdier." +"Spesifiser vindustittelen til nettleseren. Se forøvrig [doc@cfg_TitleTable]" +"dokumentasjon[/doc] for spesielle strenger som kan tas i bruk for å tilgang " +"til spesialverdier." #: libraries/config/messages.inc.php:192 #: libraries/navigation/NavigationHeader.class.php:204 @@ -5193,8 +5188,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Maks antal byte et skript har lov til å bruke, f.eks. [kbd]32M[/kbd] " -"([kbd]0[/kbd] for ingen begrensning)" +"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:296 msgid "Memory limit" @@ -5555,9 +5550,8 @@ msgid "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -"Stien til konfigfila for [a@http://swekey.com]SweKey hardware " -"authentication[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/" -"swekey.conf)" +"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:373 msgid "SweKey config file" @@ -5580,8 +5574,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/" -"a]støtte, anbefalt: [kbd]pma_bookmark[/kbd]" +"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:377 msgid "Bookmark table" @@ -5590,14 +5584,14 @@ msgstr "Bokmerketabell" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: " -"[kbd]pma_column_info[/kbd]" +"La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: [kbd]" +"pma_column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5629,8 +5623,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "En spesiell MySQL bruker konfigurert med begrensede rettigheter, mer " -"informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/" -"controluser]wiki[/a]" +"informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/controluser]" +"wiki[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5713,8 +5707,8 @@ msgstr "Skul databaser" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5843,11 +5837,11 @@ msgstr "Nylig brukt tabell" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/" -"relation]relasjonslink[/a]støtte, anbefalt: [kbd]pma_relation[/kbd]" +"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:421 msgid "Relation table" @@ -5863,8 +5857,8 @@ msgstr "SHOW DATABASES kommando" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] for et eksempel" @@ -5986,11 +5980,11 @@ msgstr "Spørringer som skal spores" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" +#| "Leave blank for no SQL query tracking support, suggested: [kbd]" +#| "pma_tracking[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"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]" @@ -6015,8 +6009,8 @@ msgstr "Automatisk opprette versjoner" #| msgid "" #| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" @@ -6218,11 +6212,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Hvis du har et egendefinert brukernavn, angi det her (standard: " -"[kbd]anonymous[/kbd])" +"Hvis du har et egendefinert brukernavn, angi det her (standard: [kbd]" +"anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Brukernavn" @@ -6639,7 +6633,7 @@ msgstr "Database(r):" msgid "Table(s):" msgstr "Tabell(er):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rader:" @@ -6692,8 +6686,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -7258,8 +7252,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7279,7 +7273,7 @@ msgid "No data found for GIS visualization." msgstr "Ingen data funnet for graf." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." @@ -7414,11 +7408,11 @@ msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -7473,7 +7467,7 @@ msgstr "Utfør indeks(er)" msgid "Add prefix" msgstr "Utfør indeks(er)" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7808,17 +7802,17 @@ msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Kun struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur og data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Bare data" @@ -7987,8 +7981,8 @@ msgstr "Velkommen til %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -8263,7 +8257,7 @@ msgstr "Sett inn kolonnenavn i første rad" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8271,7 +8265,7 @@ msgstr "Vert" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8289,7 +8283,7 @@ msgstr "PHP-Versjon" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9511,7 +9505,7 @@ msgstr "Attributter" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9680,7 +9674,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versjon" @@ -10146,8 +10140,8 @@ msgstr "Brukeroversikt" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " @@ -10162,62 +10156,291 @@ msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekund" +msgstr[1] "Sekund" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minutt" +msgstr[1] "Minutt" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Vis statistikk" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select page" +msgid "Selected time range:" +msgstr "Velg side" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Spørringstype" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Informasjon" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Utfør indeks(er)" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Fjern database" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Se slavestatustabell" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Velg tabeller" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Ugylding tabellnavn" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Legg til en ny tjener" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL spørringer" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "CHAR textarea rows" +msgid "Start Monitor" +msgstr "CHAR textarea rader" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Aktiver utheving" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Oppdater" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR textarea kolonner" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Feilbehandling:" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Gjennopprett standard verdi" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generert av" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Datafil vekststørrelse" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Annet" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Oppstart" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total tid:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tid" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Lukk" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tid" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Lagre denne SQL-spørringen" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Navn" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "La alle brukere ha adgang til dette bokmerket" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10238,10 +10461,6 @@ msgstr "Fjern" msgid "Bookmark this SQL query:" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "La alle brukere ha adgang til dette bokmerket" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Erstatt eksisterende bokmerke med samme navn" @@ -10382,7 +10601,7 @@ msgstr "Merk overheng" msgid "Sort" msgstr "Sorter" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ingen" @@ -10546,7 +10765,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endret" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -10595,8 +10814,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på " -"%stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på %" +"stransformasjonsbeskrivelser%s" #: libraries/tbl_columns_definition_form.inc.php:171 msgid "Transformation options" @@ -10709,7 +10928,7 @@ msgstr "Feil i ZIP arkivet:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Endringene er lagret" @@ -10767,7 +10986,7 @@ msgstr "Veksle mellom liten/stor" msgid "Toggle relation lines" msgstr "For å velge relasjon, klikk :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF skjema" @@ -10843,51 +11062,51 @@ msgstr "Opprett" msgid "Active options" msgstr "Tabellinnstillinger" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Siden har blitt opprettet" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sideopprettelsen feilet" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "sider" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importer filer" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Lag en ny indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Brukernavn" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "anbefalt" @@ -10917,7 +11136,7 @@ msgstr "Intern relasjon lagt til" msgid "Relation deleted" msgstr "Relasjon slettet" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Feil oppstod under lagring av Designerkoordinater." @@ -11373,220 +11592,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Informasjon" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Utfør indeks(er)" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Fjern database" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Se slavestatustabell" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Velg tabeller" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Ugylding tabellnavn" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Legg til en ny tjener" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL spørringer" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Vis statistikk" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select page" -msgid "Selected time range:" -msgstr "Velg side" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Spørringstype" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekund" -msgstr[1] "Sekund" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minutt" -msgstr[1] "Minutt" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "CHAR textarea rows" -msgid "Start Monitor" -msgstr "CHAR textarea rader" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Aktiver utheving" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Oppdater" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR textarea kolonner" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Feilbehandling:" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Gjennopprett standard verdi" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12381,9 +12386,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Opprett en mappe [em]config[/em] som er skrivbar for webtjener i phpMyAdmin " -"øverste mappe som beskrevet i [a@../Documentation." -"html#setup_script]documentation[/a]. Hvis ikke så vil du kun være i stand " -"til å laste ned eller fremvise den." +"øverste mappe som beskrevet i [a@../Documentation.html#setup_script]" +"documentation[/a]. Hvis ikke så vil du kun være i stand til å laste ned " +"eller fremvise den." #: setup/frames/index.inc.php:60 msgid "" @@ -12655,8 +12660,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -12673,15 +12678,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Du valgte [kbd]config[/kbd] autentisering og inkluderte brukernavn og " "passord for autmatisk innlogging, noe som ikke anbefales for aktive tjenere. " "Hvem som helst som kjenner phpMyAdmin URL kan direkte få adgang til ditt " -"phpMyAdmin panel. Velg [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]autentiseringstype[/a] [kbd]cookie[/kbd] eller [kbd]http[/" -"kbd]." +"phpMyAdmin panel. Velg [a@?page=servers&mode=edit&id=%1$d#tab_Server]" +"autentiseringstype[/a] [kbd]cookie[/kbd] eller [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, fuzzy, php-format @@ -12704,8 +12708,8 @@ msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Zip dekomprimering[/" -"a]trenger funksjoner (%s) som ikke er tilgjengelig på dette systemet." +"[a@?page=form&formset=features#tab_Import_export]Zip dekomprimering[/a]" +"trenger funksjoner (%s) som ikke er tilgjengelig på dette systemet." #: setup/lib/index.lib.php:348 #, fuzzy @@ -12741,47 +12745,37 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn" msgid "Wrong data" msgstr "Ingen databaser" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Bokmerke %s opprettet" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Lagre denne SQL-spørringen" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Navn" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -13033,34 +13027,34 @@ msgstr "Velg kolonne for visning" msgid "No column selected." msgstr "Ingen rader valgt" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Overvåkningsrapport for tabell `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versjon %s er opprettet, overvåking av %s.%s er aktivert." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL spørringer utført." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13068,125 +13062,125 @@ msgstr "" "Du kan utføre dumpen ved å opprette og bruke en midlertidig database. " "Kontroller at du har privilegiene til å gjøre så." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versjon %s øyeblikksbilde (SQL kode)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Overvåkingsspørringer" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Slett overvåkningsdata for denne tabellen" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ingen databaser" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dato" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Datadefinisjonsuttrykk" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Datamanipulasjonsuttrykk" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dump (filnedlasting)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Dette valget vil erstatte din tabell og dataene den inneholder." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL utførelse" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Vis versjoner" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Deaktiver overvåkning av %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktiver nå" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktiver overvåkning av %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiver nå" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Opprett versjon %s av %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Opprett versjon" @@ -13574,8 +13568,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13710,8 +13704,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14441,6 +14435,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maks. samtidige tilkoblinger" +#~ msgid "Headers every %s rows" +#~ msgstr "Topptekst hver %s. rad" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14726,9 +14723,9 @@ msgstr "maks. samtidige tilkoblinger" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Når du setter denne til [kbd]nested[/kbd] så blir tabellnavnaliaset kun " #~ "brukt til å splitte/neste tabellene etter $cfg['LeftFrameTableSeparator'] " @@ -14919,8 +14916,8 @@ msgstr "maks. samtidige tilkoblinger" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen " -#~ "%s?" +#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/nl.po b/po/nl.po index 9c72fa8e5e..afa3ef8fdd 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-12 14:52+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: Dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -43,7 +43,7 @@ msgid "Search:" msgstr "Zoeken:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -72,21 +72,21 @@ msgstr "Zoeken:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Start" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beschrijving" @@ -105,7 +105,7 @@ msgstr "" "Het bestand %s is niet beschikbaar op dit systeem, gelieve www.phpmyadmin." "net te bezoeken voor meer informatie." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Databank %1$s werd aangemaakt." @@ -133,7 +133,7 @@ msgstr "Tabelopmerkingen:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolom" @@ -156,7 +156,7 @@ msgstr "Kolom" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Type" @@ -173,7 +173,7 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Leeg" @@ -188,7 +188,7 @@ msgstr "Leeg" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standaardwaarde" @@ -230,9 +230,9 @@ msgstr "Opmerkingen" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nee" @@ -257,9 +257,9 @@ msgstr "Nee" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -311,7 +311,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -387,7 +387,7 @@ msgstr "Tabellen met tracker" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databank" @@ -395,17 +395,17 @@ msgstr "Databank" msgid "Last version" msgstr "Laatste versie" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Aangemaakt" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Bijgewerkt" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -418,7 +418,7 @@ msgstr "Status" msgid "Action" msgstr "Actie" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Toon" @@ -434,11 +434,11 @@ msgstr "Verwijder tracking data voor deze tabel" msgid "Drop" msgstr "Verwijderen" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "ingeschakeld" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "niet actief" @@ -446,11 +446,11 @@ msgstr "niet actief" msgid "Versions" msgstr "Versies" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Tracking-rapport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Structuur-snapshot" @@ -601,11 +601,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"U probeerde waarschijnlijk een bestand up te loaden dat te groot is. Zie " -"%sdocumentatie%s voor oplossingen voor deze beperking." +"U probeerde waarschijnlijk een bestand up te loaden dat te groot is. Zie %" +"sdocumentatie%s voor oplossingen voor deze beperking." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -655,7 +655,7 @@ msgstr "" "De plugins voor het importeren konden niet worden geladen, controleer uw " "installatie!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bladwijzer %s aangemaakt" @@ -682,7 +682,7 @@ msgstr "" "dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsbeperkingen van PHP " "worden versoepeld." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -892,7 +892,7 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." @@ -901,7 +901,7 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." msgid "Do you really want to execute \"%s\"?" msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige databank te VERWIJDEREN!" @@ -985,8 +985,8 @@ msgstr "Rechten worden herladen" msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Sluiten" @@ -1114,13 +1114,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1159,7 +1159,7 @@ msgid "Traffic" msgstr "Verkeer" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Instellingen" @@ -1179,13 +1179,14 @@ msgstr "Grafiek toevoegen aan raster" msgid "Please add at least one variable to the series" msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Geen" @@ -1285,7 +1286,7 @@ msgstr "Instellingen wijzigen" msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Grafiektitel" @@ -1373,7 +1374,7 @@ msgstr "Verklaar resultaat" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tijd" @@ -1473,7 +1474,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeren" @@ -1530,7 +1531,7 @@ msgid "Cancel" msgstr "Annuleren" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laden" @@ -1681,7 +1682,7 @@ msgstr "SQL-queryveld verbergen" msgid "Show query box" msgstr "SQL-queryveld tonen" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1694,7 +1695,7 @@ msgstr "Wijzigen" msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1780,7 +1781,7 @@ msgstr "Inhoud gegevenspunt" msgid "Ignore" msgstr "Negeren" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopiëren" @@ -1796,7 +1797,7 @@ msgstr "Lijnstuk definitie" msgid "Polygon" msgstr "Polygoon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrie" @@ -2282,33 +2283,33 @@ msgstr "per uur" msgid "per day" msgstr "per dag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Het bestaande configuratiebestand (%s) is niet leesbaar." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Verkeerde rechten ingesteld op het configuratiebestand, dit mag niet " "leesbaar zijn voor iedereen!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Lettertypegrootte" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Oplopend" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2449,14 +2450,14 @@ msgstr "Verkennen" msgid "Delete the matches for the %s table?" msgstr "Verwijder gevonden rijen voor de tabel %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Verwijderen" @@ -2543,16 +2544,11 @@ msgstr "horizontale (omgedraaide headers)" msgid "vertical" msgstr "verticale" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Hoofdingen iedere %s regels" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sorteren op sleutel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2579,90 +2575,90 @@ msgstr "Sorteren op sleutel" msgid "Options" msgstr "Opties" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Gedeeltelijke teksten" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Volledige teksten" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relationele sleutel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relationele weergave-kolom" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Toon binaire inhoud" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Toon BLOB-inhoud" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Toon binaire-inhoud als HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Browsertransformaties verbergen" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Goed bekende tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Goed gekende binaire waarde" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "De regel werd verwijderd" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "stop proces" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "in de query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Weergave van records" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "query duurde %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2671,8 +2667,8 @@ msgstr "query duurde %01.4f sec" msgid "With selected:" msgstr "Met geselecteerd:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2683,45 +2679,45 @@ msgstr "Met geselecteerd:" msgid "Check All" msgstr "Selecteer alles" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporteren" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "VIEW aanmaken" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Handelingen voor queryresultaat" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Afdrukken" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "GIS-gegevens visualiseren" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link niet gevonden" @@ -2770,8 +2766,8 @@ msgstr "Onbekende fout bij het uploaden." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ " -"1.11[/doc]" +"Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ 1.11" +"[/doc]" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -2802,38 +2798,38 @@ msgstr "Geen index gedefinieerd!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexen" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinaliteit" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Collatie" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Opmerking" @@ -2875,7 +2871,7 @@ msgstr "View" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structuur" @@ -3020,15 +3016,15 @@ msgstr[1] "%1$d rijen toegevoegd." msgid "Error while creating PDF:" msgstr "Fout bij het aanmaken van de PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Recente tabel kon niet opgeslagen worden" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Recente tabellen" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Er zijn geen recente tabellen" @@ -3270,7 +3266,7 @@ msgid "Maximum rows to plot" msgstr "Maximum aantal af te drukken regels" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" @@ -3382,17 +3378,17 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Een klein getal met variabele kommapositie, toegelaten waarden zijn " -"-3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E" +"Een klein getal met variabele kommapositie, toegelaten waarden zijn -" +"3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E" "+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Een getal met variabele kommapositie met dubbel nauwkeurigheid, toegelaten " @@ -3682,7 +3678,7 @@ msgstr "Een opsomming, gekozen uit de lijst van gedefiniëerde waarden" msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL-query:" @@ -3743,7 +3739,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -4164,8 +4160,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Geheime sleutelzin gebruikt voor de versleuteling van cookies in " -"[kbd]cookie[/kbd]-authenticatie" +"Geheime sleutelzin gebruikt voor de versleuteling van cookies in [kbd]cookie" +"[/kbd]-authenticatie" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4216,8 +4212,8 @@ msgstr "CHAR-kolommen bewerken" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Gebruik de gebruiksvriendelijk editor voor SQL queries ([a@http://codemirror." "net/]CodeMirror[/a]) met syntaxmarkering en lijnnummers" @@ -4615,8 +4611,8 @@ 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 "" -"Sorteer volgorde van elementen in een vreemdesleutel-afrolmenu; " -"[kbd]content[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde" +"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:149 msgid "Foreign key dropdown order" @@ -4756,9 +4752,8 @@ msgstr "Paginatitels" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Browser titel balk tekst. Zie [doc@cfg_TitleTable]documentatie[/doc] voor " "bruikbare codes." @@ -4823,8 +4818,8 @@ msgid "" "documentation" msgstr "" "Configureer de phpMyAdmin-configuratie-opslag om toegang te krijgen tot " -"extra functionaliteit, zie [doc@linked-tables]phpMyAdmin-configuratie-" -"opslag[/doc] in de documentatie" +"extra functionaliteit, zie [doc@linked-tables]phpMyAdmin-configuratie-opslag" +"[/doc] in de documentatie" #: libraries/config/messages.inc.php:204 msgid "Changes tracking" @@ -5222,8 +5217,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -"Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe " -"([kbd]new[/kbd])" +"Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe ([kbd]" +"new[/kbd])" #: libraries/config/messages.inc.php:302 msgid "Logo link target" @@ -5559,8 +5554,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]bladwijzers[/a] te gebruiken, suggestie: [kbd]pma__bookmark[/kbd]" +"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"bladwijzers[/a] te gebruiken, suggestie: [kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5568,8 +5563,8 @@ msgstr "Bladwijzertabel" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Laat dit veld leeg om geen kolomopmerkingen en mimetypes te ondersteunen, " "suggestie: [kbd]pma__column_info[/kbd]" @@ -5641,8 +5636,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Laat dit veld leeg om de Designer niet te gebruiken, suggestie: " -"[kbd]pma__designer_coords[/kbd]" +"Laat dit veld leeg om de Designer niet te gebruiken, suggestie: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5653,9 +5648,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Zie voor meer informatie: [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/" -"a]" +"Zie voor meer informatie: [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5685,8 +5679,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, suggestie: " -"[kbd]pma__history[/kbd]" +"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, suggestie: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5766,8 +5760,8 @@ msgid "" msgstr "" "Databank die wordt gebruikt om relaties, bladwijzers en PDF-eigenschappen op " "te slaan. Zie [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] voor meer " -"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: " -"[kbd]phpmyadmin[/kbd]" +"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5797,12 +5791,11 @@ msgstr "Recent gebruikte tabel" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/" -"relation]relation-links[/a] te ondersteunen, suggestie: [kbd]pma__relation[/" -"kbd]" +"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:421 msgid "Relation table" @@ -5818,8 +5811,8 @@ msgstr "Opdracht SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatietypes[/" "a] voor een voorbeeld" @@ -5855,8 +5848,8 @@ 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]" +"Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5935,8 +5928,8 @@ msgstr "Bij te houden opdrachten" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Laat dit veld leeg om het opvolgen van SQL queries niet te ondersteunen, " "suggestie: [kbd]pma__tracking[/kbd]" @@ -5959,8 +5952,8 @@ msgstr "Automatisch versies aanmaken" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, " "suggestie: [kbd]pma__userconfig[/kbd]" @@ -6088,8 +6081,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6174,8 +6167,8 @@ msgid "" msgstr "" "Geef eventueel aangepaste gebruikersnaam op (standaard [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Gebruikersnaam" @@ -6595,7 +6588,7 @@ msgstr "Databank(en):" msgid "Table(s):" msgstr "Tabel(len):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rijen:" @@ -6644,13 +6637,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabelnaam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" -"%5$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" +"$s voor meer details." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7208,11 +7201,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de " -"%sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de %" +"sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:133 msgid "Related Links" @@ -7227,7 +7220,7 @@ msgid "No data found for GIS visualization." msgstr "Geen gegevens beschikbaar voor GIS-visualisatie." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." @@ -7346,11 +7339,11 @@ msgstr "" "Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -7396,7 +7389,7 @@ msgstr "Tabelvoorvoegsel toevoegen:" msgid "Add prefix" msgstr "Voorvoegsel toevoegen" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?" @@ -7725,17 +7718,17 @@ msgid "Drop the database (DROP)" msgstr "Verwijder de databank (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Alleen structuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structuur en gegevens" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Alleen gegevens" @@ -7896,8 +7889,8 @@ msgstr "Welkom bij %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -8149,13 +8142,13 @@ msgstr "Kolomnamen in de eerste regel plaatsen:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Machine:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Gegenereerd op:" @@ -8169,7 +8162,7 @@ msgstr "PHP-versie:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Databank:" @@ -8444,7 +8437,6 @@ msgstr "" "probeer opnieuw." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Kon OpenDocument-rekenblad niet inlezen!" @@ -9305,7 +9297,7 @@ msgstr "Attributen" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9468,7 +9460,7 @@ msgid "Library" msgstr "Bibliotheek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versie" @@ -9937,8 +9929,8 @@ msgstr "Gebruikers overzicht" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL-" "privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van " @@ -9954,46 +9946,268 @@ msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d seconde" +msgstr[1] "%d seconden" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuut" +msgstr[1] "%d minuten" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logstatistieken" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Geselecteerde tijdspanne:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " +"groeperen" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Kies het logbestand waarvan u de statistieken wil genereren." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Query-analyser" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Bewakingsinstructies" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"De phpMyAdmin-monitor kan u helpen bij het optimaliseren van de " +"serverconfiguratie en het opsporen van tijdrovende SQL-queries. Voor dit " +"laatste moet u de log_output-configuratieparameter instellen op 'TABLE' en " +"ofwel slow_query_log, ofwel general_log geactiveerd hebben. Merk echter op " +"dat general_log veel gegevens genereert en dat de belasting van de server " +"tot 15% kan stijgen." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Helaas ondersteunt uw databankserver het loggen naar een tabel niet. Dit is " +"een vereiste om de databanklogboeken te kunnen analyseren met phpMyAdmin. " +"Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " +"grafiekfunctionaliteit gebruiken." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Gebruik van de monitor:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Uw browser zal alle weergegeven grafieken verversen na een vast interval. U " +"kan grafieken toevoegen en de ververssnelheid aanpassen onder " +"'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " +"bij iedere grafiek." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Om queries te tonen uit de logboeken, selecteer de relevante periode in een " +"willekeurige grafiek door de linkermuisknop in te drukken en over de grafiek " +"te slepen. Na het bevestiging wordt een tabel met gegroepeerde queries " +"geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " +"te analyseren." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Hou rekening met:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Het inschakelen van de general_log kan de serverbelasting verhogen met 5-" +"15%. Wees er ook bewust van dat het genereren van statistieken uit de " +"logboeken een belastende taak is, daarom is het aan te raden om alleen een " +"kleine periode te selecteren, en de general_log uit te schakelen en de tabel " +"te legen zodra het monitoren niet meer nodig is." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Een grafiek toevoegen" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Grafiek instellen" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Statusvariabele(n)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Selecteer series:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Algemeen bewaakt" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "of geef variabelenaam op:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Verschil weergeven" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Een scheiding toepassen" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Eenheid toevoegen aan gegevenswaarden" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Deze serie toevoegen" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Reeks leegmaken" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series in grafiek:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Start bewaking" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instructies/Setup" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Klaar met slepen (herschikken) van de grafieken" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Grafieken verslepen ingeschakeld" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Vernieuwingsfrequentie" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Grafiekkolommen" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Grafiekschikking" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"De volgorde van de grafieken wordt opgeslagen in de lokale opslag van uw " +"browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " +"heeft." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Standaardwaarde herstellen" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultaat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Gegenereerd door:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Gedetailleerd profiel" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Volgorde" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Toestand" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Samenvatting per toestand" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Totale tijd" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Tijd" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Oproepen" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "Gemiddelde tijd" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Deze SQL-query opslaan" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Label:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Elke gebruiker toegang geven tot deze bladwijzer" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10012,10 +10226,6 @@ msgstr "Leegmaken" msgid "Bookmark this SQL query:" msgstr "Deze SQL-query onthouden:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Elke gebruiker toegang geven tot deze bladwijzer" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Bladwijzer met dezelfde naam overschrijven" @@ -10106,8 +10316,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige " -"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie" -"%s." +"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%" +"s." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10156,7 +10366,7 @@ msgstr "Selecteer tabellen met overhead" msgid "Sort" msgstr "Sorteren" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Geen" @@ -10310,7 +10520,7 @@ msgstr "Effectief" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Fout in query" @@ -10462,7 +10672,7 @@ msgstr "Fout in het ZIP-archief:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fatale fout: de navigatie is alleen toegankelijk via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" @@ -10518,7 +10728,7 @@ msgstr "Wissel klein/groot" msgid "Toggle relation lines" msgstr "Relatielijnen wisselen" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Coördinaten voor PDF-schema importeren/exporteren" @@ -10579,39 +10789,39 @@ msgstr "Actieve opties" # Verleden tijd: "is aangemaakt" => "werd aangemaakt", ookal bestaat het nog # steeds. # Wat doet "%1$s" hier? -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "De pagina werd aangemaakt" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Het aanmaken van de pagina is mislukt" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Pagina:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import vanaf geselecteerde pagina" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exporteren naar geselecteerde pagina" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Een pagina aanmaken en ernaar exporteren" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nieuwe paginanaam: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exporteren/importeren naar schaal:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "aangeraden" @@ -10639,7 +10849,7 @@ msgstr "Interne relatie toegevoegd" msgid "Relation deleted" msgstr "Relatie verwijderd" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fout bij het opslaan van coördinaten voor de Designer." @@ -11091,215 +11301,6 @@ msgstr "" "de performantie en de wijziging ongedaan te maken indien er geen " "waarneembare verbetering vastgesteld kon worden." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Bewakingsinstructies" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"De phpMyAdmin-monitor kan u helpen bij het optimaliseren van de " -"serverconfiguratie en het opsporen van tijdrovende SQL-queries. Voor dit " -"laatste moet u de log_output-configuratieparameter instellen op 'TABLE' en " -"ofwel slow_query_log, ofwel general_log geactiveerd hebben. Merk echter op " -"dat general_log veel gegevens genereert en dat de belasting van de server " -"tot 15% kan stijgen." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Helaas ondersteunt uw databankserver het loggen naar een tabel niet. Dit is " -"een vereiste om de databanklogboeken te kunnen analyseren met phpMyAdmin. " -"Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " -"grafiekfunctionaliteit gebruiken." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Gebruik van de monitor:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Uw browser zal alle weergegeven grafieken verversen na een vast interval. U " -"kan grafieken toevoegen en de ververssnelheid aanpassen onder " -"'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " -"bij iedere grafiek." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Om queries te tonen uit de logboeken, selecteer de relevante periode in een " -"willekeurige grafiek door de linkermuisknop in te drukken en over de grafiek " -"te slepen. Na het bevestiging wordt een tabel met gegroepeerde queries " -"geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " -"te analyseren." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Hou rekening met:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Het inschakelen van de general_log kan de serverbelasting verhogen met " -"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de " -"logboeken een belastende taak is, daarom is het aan te raden om alleen een " -"kleine periode te selecteren, en de general_log uit te schakelen en de tabel " -"te legen zodra het monitoren niet meer nodig is." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Een grafiek toevoegen" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Grafiek instellen" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Statusvariabele(n)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Selecteer series:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Algemeen bewaakt" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "of geef variabelenaam op:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Verschil weergeven" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Een scheiding toepassen" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Eenheid toevoegen aan gegevenswaarden" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Deze serie toevoegen" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Reeks leegmaken" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series in grafiek:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logstatistieken" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Geselecteerde tijdspanne:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " -"groeperen" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Kies het logbestand waarvan u de statistieken wil genereren." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Query-analyser" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d seconde" -msgstr[1] "%d seconden" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuut" -msgstr[1] "%d minuten" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Start bewaking" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instructies/Setup" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Klaar met slepen (herschikken) van de grafieken" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Grafieken verslepen ingeschakeld" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Vernieuwingsfrequentie" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Grafiekkolommen" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Grafiekschikking" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"De volgorde van de grafieken wordt opgeslagen in de lokale opslag van uw " -"browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " -"heeft." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Standaardwaarde herstellen" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12263,10 +12264,10 @@ msgid "" msgstr "" "Deze %soptie%s zou uitgeschakeld moeten zijn gezien het de mogelijkheid " "geeft aan kwaadwillenden om op grote schaal aanmeldinspogingen uit te voeren " -"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan " -"%strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is " -"mogelijk niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw " -"provider komt waar ook vele andere klanten gebruik van maken." +"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan %" +"strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is mogelijk " +"niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw provider komt " +"waar ook vele andere klanten gebruik van maken." #: setup/lib/index.lib.php:300 msgid "" @@ -12361,14 +12362,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken " "gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. " "Dit is niet aanbevolen voor productiesystemen gezien iemand die het URL van " -"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype" -"%s [kbd]cookie[/kbd] of [kbd]http[/kbd]." +"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype%" +"s [kbd]cookie[/kbd] of [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12413,24 +12414,24 @@ msgstr "" msgid "Wrong data" msgstr "Verkeerde gegevens" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bladwijzer niet aangemaakt" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12439,19 +12440,11 @@ msgstr "" "Tabel %s bevat geen unieke kolom. Functies zoals rasterbewerkingen, " "checkboxen, Bewerken, Kopiëren en Verwijderen, zijn niet beschikbaar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Deze SQL-query opslaan" - -#: sql.php:1191 -msgid "Label:" -msgstr "Label:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Geen gegevens om weer te geven" @@ -12661,31 +12654,31 @@ msgstr "Kies weer te geven kolom:" msgid "No column selected." msgstr "Geen kolom geselecteerd." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking-rapport voor tabel `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versie %1$s is aangemaakt, tracking van %2$s is ingeschakeld." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking van %1$s is uitgeschakeld op versie %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking van %1$s is ingeschakeld op versie %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-statements uitgevoerd." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12693,115 +12686,115 @@ msgstr "" "U kunt de dump gebruiken door deze in een tijdelijke databank te importeren. " "Let er wel op dat u hier rechten voor nodig heeft." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" "De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig " "zijn." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-statements geëxporteerd. Kopieer de dump of voer de dump uit." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versie %s snapshot (SQL-code)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Tracking-gegevensdefinitie succesvol verwijderd" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking-gegevensmanipulatie succesvol verwijderd" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Tracking-statements" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Laat %1$s zien met datums van %2$s tot %3$s door gebruiker %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Verwijder tracking-gegevensrij uit verslag" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Geen gegevens" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Definitie-statement" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Manipulatie-statement" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-dump (naar bestand)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Deze optie vervangt de tabel en alle gegevens van die tabel." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-uitvoering" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exporteren als %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Versies weergeven" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Tracking uitschakelen van %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Nu uitschakelen" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Tracking inschakelen van %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Nu inschakelen" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Versie %1$s van %2$s aanmaken" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Deze definitie-statements tracken:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Deze manipulatie-statements tracken:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Versie aanmaken" @@ -13203,8 +13196,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "De huidige verhouding van vrij querycachegeheugen tot de totale " "querycachegrootte is %s%%. Dit zou meer dan 80%% moeten zijn" @@ -13361,8 +13354,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% van alle sorteeracties veroorzaken tijdelijke tabellen, deze waarde zou " "lager moeten zijn dan 10%%." @@ -14143,6 +14136,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Hoofdingen iedere %s regels" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14435,9 +14431,9 @@ msgstr "concurrent_insert is ingesteld op 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Indien ingesteld op [kbd]nested[/kbd] wordt de opmerking enkel op basis " #~ "van $cfg['LeftFrameTableSeparator'] gesplitst. Hierdoor krijgt enkel de " diff --git a/po/pa.po b/po/pa.po index 36df0562cd..d46cb8fe58 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-09-01 12:11+0200\n" "Last-Translator: gurjit dhillon \n" "Language-Team: Punjabi \n" -"Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -48,7 +48,7 @@ msgid "Search:" msgstr "ਲੱਭੋ" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "ਲੱਭੋ" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "ਚੱਲੋ" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "" @@ -108,7 +108,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ" @@ -136,7 +136,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "" @@ -159,7 +159,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "" @@ -176,7 +176,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "" @@ -191,7 +191,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "" @@ -233,9 +233,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "" @@ -260,9 +260,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "" @@ -312,7 +312,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "" @@ -388,7 +388,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "" @@ -396,17 +396,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -419,7 +419,7 @@ msgstr "" msgid "Action" msgstr "" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "" @@ -435,11 +435,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -447,11 +447,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -595,8 +595,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -636,7 +636,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -658,7 +658,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -838,7 +838,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -847,7 +847,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -931,8 +931,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1055,13 +1055,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1100,7 +1100,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1120,13 +1120,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1219,7 +1220,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1299,7 +1300,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1390,7 +1391,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1447,7 +1448,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1595,7 +1596,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1608,7 +1609,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1690,7 +1691,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1706,7 +1707,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2177,31 +2178,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2343,14 +2344,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2437,16 +2438,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2473,89 +2469,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2564,8 +2560,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2576,45 +2572,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2689,38 +2685,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2760,7 +2756,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2905,15 +2901,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3148,7 +3144,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3245,14 +3241,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3488,7 +3484,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3547,7 +3543,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4003,8 +3999,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4525,9 +4521,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5260,8 +5255,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5454,8 +5449,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5472,8 +5467,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5570,8 +5565,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5590,8 +5585,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5777,8 +5772,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6164,7 +6159,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6213,8 +6208,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6703,8 +6698,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6720,7 +6715,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6836,11 +6831,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6885,7 +6880,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7212,17 +7207,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7383,8 +7378,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7626,13 +7621,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7646,7 +7641,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8672,7 +8667,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8833,7 +8828,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9274,8 +9269,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9286,46 +9281,239 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9344,10 +9532,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9473,7 +9657,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9627,7 +9811,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9762,7 +9946,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9818,7 +10002,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9876,39 +10060,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9936,7 +10120,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10340,186 +10524,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11394,8 +11398,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11436,43 +11440,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11678,143 +11674,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12162,8 +12158,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12281,8 +12277,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 82883331f4..5c854cab9a 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,7 +44,7 @@ msgid "Search:" msgstr "" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +73,21 @@ msgstr "" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "" @@ -105,7 +104,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, possible-php-format msgid "Database %1$s has been created." msgstr "" @@ -133,7 +132,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "" @@ -156,7 +155,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "" @@ -173,7 +172,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "" @@ -188,7 +187,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "" @@ -230,9 +229,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "" @@ -257,9 +256,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "" @@ -309,7 +308,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "" @@ -385,7 +384,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "" @@ -393,17 +392,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -416,7 +415,7 @@ msgstr "" msgid "Action" msgstr "" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "" @@ -432,11 +431,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -444,11 +443,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -592,8 +591,8 @@ msgstr "" #: import.php:107 #, possible-php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -633,7 +632,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, possible-php-format msgid "Bookmark %s created" msgstr "" @@ -655,7 +654,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -835,7 +834,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -844,7 +843,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -928,8 +927,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1052,13 +1051,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1097,7 +1096,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1117,13 +1116,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1216,7 +1216,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1296,7 +1296,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1387,7 +1387,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1444,7 +1444,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1592,7 +1592,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1605,7 +1605,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1687,7 +1687,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1703,7 +1703,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2172,31 +2172,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, possible-php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2336,14 +2336,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2430,16 +2430,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, possible-php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2466,89 +2461,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, possible-php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2557,8 +2552,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2569,45 +2564,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2682,38 +2677,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2753,7 +2748,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2898,15 +2893,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3141,7 +3136,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3238,14 +3233,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3481,7 +3476,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3540,7 +3535,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3996,8 +3991,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4518,9 +4513,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5253,8 +5247,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5447,8 +5441,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5465,8 +5459,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5563,8 +5557,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5583,8 +5577,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5770,8 +5764,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6157,7 +6151,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6206,8 +6200,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6696,8 +6690,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6713,7 +6707,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6829,11 +6823,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6878,7 +6872,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7205,17 +7199,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7376,8 +7370,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, possible-php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7619,13 +7613,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7639,7 +7633,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8665,7 +8659,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8826,7 +8820,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9267,8 +9261,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9279,46 +9273,239 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, possible-php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, possible-php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, possible-php-format msgid "Run SQL query/queries on server %s" @@ -9337,10 +9524,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9466,7 +9649,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9620,7 +9803,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9755,7 +9938,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9811,7 +9994,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9869,39 +10052,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9929,7 +10112,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10333,186 +10516,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, possible-php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, possible-php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, possible-php-format msgid "Questions since startup: %s" @@ -11387,8 +11390,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11429,43 +11432,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, possible-php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11669,143 +11664,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, possible-php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, possible-php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, possible-php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, possible-php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, possible-php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, possible-php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, possible-php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, possible-php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, possible-php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, possible-php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/pl.po b/po/pl.po index 2a9301e5f2..af956108eb 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-30 13:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Polish \n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Szukaj" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Szukaj" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Wykonaj" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nazwa klucza" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -110,7 +110,7 @@ msgstr "" "Plik %s nie jest dostępny w tym systemie. Proszę odwiedzić witrynę www." "phpmyadmin.net, aby uzyskać więcej informacji." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." @@ -140,7 +140,7 @@ msgstr "Komentarze tabeli" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolumna" @@ -163,7 +163,7 @@ msgstr "Kolumna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -180,7 +180,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -195,7 +195,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Ustawienia domyślne" @@ -237,9 +237,9 @@ msgstr "Komentarze" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nie" @@ -264,9 +264,9 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Tak" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -401,7 +401,7 @@ msgstr "Tabele śledzone" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Baza danych" @@ -409,17 +409,17 @@ msgstr "Baza danych" msgid "Last version" msgstr "Ostatnia wersja" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Utworzona" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Zaktualizowana" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -432,7 +432,7 @@ msgstr "Status" msgid "Action" msgstr "Działanie" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Pokaż" @@ -448,11 +448,11 @@ msgstr "Usuń dane śledzące tę tabelę" msgid "Drop" msgstr "Usuń" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktywny" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "nieaktywny" @@ -460,11 +460,11 @@ msgstr "nieaktywny" msgid "Versions" msgstr "Wersje" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Raport śledzenia" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Migawka struktury" @@ -622,8 +622,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Prawdopodobnie próbował załadować plik, który jest zbyt duży. Proszę " "zapoznać się %sdokumentacją%s, aby obejść te ograniczenia." @@ -671,7 +671,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s utworzona" @@ -698,7 +698,7 @@ msgstr "" "dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego " "importu bez zwiększenia limitów czasowych PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -925,10 +925,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" -"%s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" +"s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." @@ -937,7 +937,7 @@ msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." msgid "Do you really want to execute \"%s\"?" msgstr "Czy na pewno chcesz wykonać \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -1021,8 +1021,8 @@ msgstr "Przeładowanie Uprawnień" msgid "Removing Selected Users" msgstr "Usuwanie wybranych użytkowników" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Zamknij" @@ -1149,13 +1149,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1194,7 +1194,7 @@ msgid "Traffic" msgstr "Ruch" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Ustawienia" @@ -1214,13 +1214,14 @@ msgstr "Dodaj wykres do siatki" msgid "Please add at least one variable to the series" msgstr "Proszę dodać przynajmniej jedną zmienną do serii" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Żaden" @@ -1320,7 +1321,7 @@ msgstr "Zmiana ustawień" msgid "Current settings" msgstr "Ustawienia bieżące" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Tytuł wykresu" @@ -1408,7 +1409,7 @@ msgstr "Wyjaśnij wynik przetworzenia danych" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Czas" @@ -1506,7 +1507,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1563,7 +1564,7 @@ msgid "Cancel" msgstr "Anuluj" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Wczytywanie" @@ -1711,7 +1712,7 @@ msgstr "Ukryj okno zapytań" msgid "Show query box" msgstr "Pokaż okno zapytań" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1724,7 +1725,7 @@ msgstr "Edytuj" msgid "No rows selected" msgstr "Nie żadnych wybrano rekordów" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1810,7 +1811,7 @@ msgstr "Treść punktu danych" msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopiuj" @@ -1826,7 +1827,7 @@ msgstr "Linia ciągu" msgid "Polygon" msgstr "Wielokąt" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2314,31 +2315,31 @@ msgstr "na godzinę" msgid "per day" msgstr "na dzień" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Istniejący plik konfiguracyjny (%s) nie jest czytelny." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "Złe uprawnienia pliku konfiguracyjnego, nie powinien być zapisywalny!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Rozmiar czcionki" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Rosnąco" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2494,14 +2495,14 @@ msgstr "Przeglądaj" msgid "Delete the matches for the %s table?" msgstr "Usunąć dopasowania do tabeli %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Usuń" @@ -2592,16 +2593,11 @@ msgstr "poziomo (obrócone nagłówki)" msgid "vertical" msgstr "pionowo" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Nagłówki co %s wierszy" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sortuj wg klucza" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2628,91 +2624,91 @@ msgstr "Sortuj wg klucza" msgid "Options" msgstr "Opcje" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Częściowe teksty" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Pełne teksty" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Klucz relacyjny" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relacje wyświetlania kolumn" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Pokaż binarne treści" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Pokaż zawartość BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Pokaż binarne treści jako HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Ukryj transformacje przeglądarki" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Znany tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Znane binarne" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Wiersz został usunięty" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Zabij" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Może być w przybliżeniu. Zobacz [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "w zapytaniu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Pokaż wiersze" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "wszystkich" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2721,8 +2717,8 @@ msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" msgid "With selected:" msgstr "Z zaznaczonymi:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2733,45 +2729,45 @@ msgstr "Z zaznaczonymi:" msgid "Check All" msgstr "Zaznacz wszystkie" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Utwórz widok" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Podgląd wydruku" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Podgląd wydruku (z pełnymi tekstami)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Wyświetlanie wykresu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Wizualizacja danych GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Łącza nie znaleziono" @@ -2851,38 +2847,38 @@ msgstr "Brak zdefiniowanego indeksu!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Moc" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Metoda porównywania napisów" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentarz" @@ -2924,7 +2920,7 @@ msgstr "Widok" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -3072,15 +3068,15 @@ msgstr[2] "Wstawionych rekordów: %1$d." msgid "Error while creating PDF:" msgstr "Błąd podczas tworzenia PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nie można zapisać ostatnich tabeli" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Ostatnie tabele" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Brak ostatnich tabel" @@ -3323,7 +3319,7 @@ msgid "Maximum rows to plot" msgstr "Maksymalna liczba wierszy do wykreślenia" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" @@ -3439,16 +3435,16 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Małe wartości zmiennoprzecinkowych numer, dopuszczalne są - 3.402823466E 38 " "do - 1.175494351E-38, 0 i 1.175494351E-38 do 3.402823466E 38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Podwójnej precyzji numer, dopuszczalne wartości zmiennoprzecinkowych są - " @@ -3731,7 +3727,7 @@ msgstr "Wyliczenie, wybrane z listy zdefiniowane wartości" msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3792,7 +3788,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "W linii" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilowanie" @@ -4269,8 +4265,8 @@ msgstr "Edycja kolumny typu CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Użyj przyjaznego dla użytkownika edytora do edycji zapytań SQL ([a@http://" "codemirror.net/]CodeMirror[/a]) z kolorowaniem składni i numerami linii" @@ -4818,9 +4814,8 @@ msgstr "Tytuły stron" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Określ tytuł. Przeczytaj szczegóły w [doc@cfg_TitleTable]dokumentacji[/doc], " "żeby dowiedzieć się więcej." @@ -5288,8 +5283,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -"Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie " -"([kbd]new[/kbd])" +"Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie ([kbd]" +"new[/kbd])" #: libraries/config/messages.inc.php:302 msgid "Logo link target" @@ -5636,8 +5631,8 @@ msgstr "Tabela zakładek" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Pozostaw puste bez uwag typu kolumn/mime, zasugerował: [kbd]pma_column_info[/" "kbd]" @@ -5657,8 +5652,8 @@ msgstr "Kompresja połączenia" #: libraries/config/messages.inc.php:382 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ć " -"[kbd]tcp[/kbd]" +"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić [kbd]tcp" +"[/kbd]" #: libraries/config/messages.inc.php:383 msgid "Connection type" @@ -5674,8 +5669,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Specjalny użytkownik MySQL z ograniczonymi uprawnieniami. Więcej informacji " -"jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/" -"controluser]wiki[/a]" +"jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/controluser]" +"wiki[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5717,8 +5712,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Pozostaw puste, bez żadnego wsparcia projektantów, zaproponował: " -"[kbd]pma_designer_coords[/kbd]" +"Pozostaw puste, bez żadnego wsparcia projektantów, zaproponował: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5730,8 +5725,8 @@ msgid "" "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" "Więcej informacji jest dostępnych pod adresem: [a@https://sourceforge.net/p/" -"phpmyadmin/bugs/2606/]PMA bug tracker[/a] i [a@http://bugs.mysql." -"com/19588]MySQL Bugs[/a]" +"phpmyadmin/bugs/2606/]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]" +"MySQL Bugs[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5759,8 +5754,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Pozostaw puste, bez zapytania poparcie historii SQL, zasugerował: " -"[kbd]pma_history[/kbd]" +"Pozostaw puste, bez zapytania poparcie historii SQL, zasugerował: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5833,8 +5828,8 @@ msgstr "Hasło dla uwierzytelniania konfiguracji" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: " -"[kbd]pma_pdf_pages[/kbd]" +"Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5848,8 +5843,8 @@ msgid "" msgstr "" "Baza danych używana prze funkcje związków, zakładek i generowania PDF-ów. " "Pełna informacja znajduje się na stronie [a@http://wiki.phpmyadmin.net/pma/" -"pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: " -"[kbd]phpmyadmin[/kbd]" +"pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: [kbd]" +"phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5878,11 +5873,11 @@ msgstr "Ostatnio używane tabele" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Pozostaw puste, by nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/" -"relation]relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]" +"Pozostaw puste, by nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/relation]" +"relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5898,8 +5893,8 @@ msgstr "Polecenie SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Zobacz przykład usługi pojedynczego logowania (Signon) [a@http://wiki." "phpmyadmin.net/pma/auth_types#signon]authentication types[/a]" @@ -5935,8 +5930,8 @@ 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]" +"Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5963,8 +5958,8 @@ msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"Pozostaw puste, by nie obsługiwać schematu PDF. Sugerowana nazwa: " -"[kbd]pma_table_coords[/kbd]" +"Pozostaw puste, by nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -6017,11 +6012,11 @@ msgstr "Instrukcje do śledzenia" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Puste pole oznacza brak wsparcia śledzenia zapytań SQL, zaproponował: " -"[kbd]pma_tracking[/kbd]" +"Puste pole oznacza brak wsparcia śledzenia zapytań SQL, zaproponował: [kbd]" +"pma_tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -6040,8 +6035,8 @@ msgstr "Automatyczne tworzenie wersji" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. " "Zasugerowano: [kbd]pma_designer_coords[/kbd]" @@ -6069,8 +6064,8 @@ msgstr "Szczegółowa nazwa serwera" #: libraries/config/messages.inc.php:455 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie " -"(wiersze)\";" +"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie (wiersze)" +"\";" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" @@ -6255,11 +6250,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie " -"[kbd]anonymous[/kbd])" +"Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie [kbd]anonymous" +"[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Użytkownik" @@ -6422,8 +6417,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Włącza format kompresji [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] dla operacji importu i eksportu" +"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:530 msgid "ZIP" @@ -6689,7 +6684,7 @@ msgstr "Baza(y) danych:" msgid "Table(s):" msgstr "Tabela(e):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Wiersze:" @@ -6738,8 +6733,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Wartość ta jest interpretowana za pomocą %1$sstrftime%2$s, dzięki czemu " "można używać wartości czasu formatowania. Dodatkowo po transformacji stanie " @@ -7296,8 +7291,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie " "domowej PrimeBase XT%s." @@ -7315,7 +7310,7 @@ msgid "No data found for GIS visualization." msgstr "Nie znaleziono danych do wizualizacji GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero wierszy)." @@ -7436,11 +7431,11 @@ msgstr "" "Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do " "poruszania się w dowolnym miejscu" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -7491,7 +7486,7 @@ msgstr "Dodaj prefiks tabeli" msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Czy na pewno chcesz wykonać następującą kwerendę?" @@ -7821,17 +7816,17 @@ msgid "Drop the database (DROP)" msgstr "Usuń bazę danych (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tylko struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura i dane" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tylko dane" @@ -7994,8 +7989,8 @@ msgstr "Witamy w %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Możesz " "użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną." @@ -8254,7 +8249,7 @@ msgstr "Umieść nazwy kolumn w pierwszym wierszu" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8262,7 +8257,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8280,7 +8275,7 @@ msgstr "Wersja PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9422,7 +9417,7 @@ msgstr "Atrybuty" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatkowo" @@ -9587,7 +9582,7 @@ msgid "Library" msgstr "Biblioteka" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Wersja" @@ -10050,8 +10045,8 @@ msgstr "Omówienie użytkowników" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " @@ -10066,63 +10061,288 @@ msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." msgid "You have added a new user." msgstr "Dodałeś nowego użytkownika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekund" +msgstr[2] "%d sekundę" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuty" +msgstr[2] "%d minuty" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statystyki Log" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Wybrany zakres czasu:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" +"Wybierz z którego dziennika chcesz statystyki które mają być generowane." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Wyniki są pogrupowane według zapytania tekstu." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizuj zapytanie" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrukcje monitora" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Monitor phpMyAdmin może pomóc w optymalizacji konfiguracji serwera i " +"wyśledzić czasochłonne zapytania. W tym ostatnim przypadku trzeba będzie " +"ustawić log_output dla 'TABLE' i albo mają slow_query_log lub general_log " +"włączone. Należy jednak pamiętać, że general_log produkuje duże ilości " +"danych i zwiększa obciążenie serwera nawet o 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Niestety serwer bazy danych nie obsługuje rejestracji do tabeli, która jest " +"wymagana do analizy logów bazy danych za pomocą phpMyAdmin. Rejestracja do " +"tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać " +"funkcji wykresów serwera jednak." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Korzystanie z monitora:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Twoja przeglądarka odświeży wszystkie wyświetlane wykresy w regularnych " +"odstępach czasu. Możesz dodawać wykresy i zmienić częstotliwość odświeżania " +"w 'Ustawienia' lub usunąć wykres za pomocą ikony zębatki dla każdego wykresu." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Aby wyświetlić zapytania z dzienników, wybierz odpowiedni przedział czasowy " +"na każdym wykresie, przytrzymując lewy przycisk myszy i przesuwanie na " +"wykresie. Po potwierdzeniu, to załaduje spis pogrupowanych pytań, nie można " +"kliknąć na wszelkich występujących instrukcji SELECT do dalszych analiz." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Proszę zwrócić uwagę:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Włączenie general_log może zwiększa obciążenie serwera o 5-15%. Również miej " +"świadomość, że generowanie statystyk z dzienników jest obciążenie intensywne " +"zadań, więc wskazane jest, aby wybrać tylko niewielki przedział czasowy i " +"wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " +"wymagane." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Dodaj wykres" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Ustawiony wykres" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Zmienna statusu(ów)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Wybierz serię:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Najczęściej monitorowany" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "lub wpisz nazwę zmiennej:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Wyświetl jako wartości różnicy" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Zastosuj dzielnik" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Dołącz urządzenia do wartości danych" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Dodaj tę serię" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Wyczyść serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Seria na wykresie:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Uruchom monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrukcje/Setup" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Gotowe przestawienie/edycji wykresów" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Włącz podświetlanie" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Częstotliwość odświeżania" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Kolumny wykresu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Układ wykresu" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " +"Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Przywróć wartość domyślną" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Wynik SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Wygenerowany przez" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Wzrost rozmiaru pliku danych" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Inne" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Pocz" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Czas ogółem:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Czas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zamknij" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Czas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Pamiętaj zapytanie SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Nazwa" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10143,10 +10363,6 @@ msgstr "Wyczyść" msgid "Bookmark this SQL query:" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zastąp istniejącą zakładkę o tej samej nazwie" @@ -10238,8 +10454,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " -"%sdokumentacji%s." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" +"sdokumentacji%s." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10288,7 +10504,7 @@ msgstr "Zaznacz tabele nieoptymalne" msgid "Sort" msgstr "Sortuj" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Brak" @@ -10444,7 +10660,7 @@ msgstr "Efektywne" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Błąd zapytania" @@ -10488,8 +10704,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " -"%sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" +"sopisy transformacji%s" #: libraries/tbl_columns_definition_form.inc.php:171 msgid "Transformation options" @@ -10603,7 +10819,7 @@ msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Błąd krytyczny: Nawigacja może być dostępna tylko za pośrednictwem AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modyfikacja została zapisana" @@ -10659,7 +10875,7 @@ msgstr "Przełączanie małe/duże" msgid "Toggle relation lines" msgstr "Przełączanie linii relacji" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importuj/eksportuj współrzędne schematu PDF" @@ -10719,43 +10935,43 @@ msgstr "Utwórz" msgid "Active options" msgstr "Aktywne opcje" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Strona została stworzona" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Błąd tworzenia strony" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Strona" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import z wybranej strony" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Eksport do wybranej strony" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Utwórz stronę i eksport do niej" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nowa nazwa strony: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Eksport/import w skali" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "zalecana" @@ -10785,7 +11001,7 @@ msgstr "Dodano wewnętrzne powiązanie" msgid "Relation deleted" msgstr "Usunięto powiązanie" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Błąd podczas zapisywania współrzędnych w widoku projektu." @@ -11236,216 +11452,6 @@ msgstr "" "ustawienia w czasie, obserwować lub odniesienie bazy danych, i cofnąć " "zmianę, gdyby nie było jednoznacznego wymiernego postępu." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrukcje monitora" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Monitor phpMyAdmin może pomóc w optymalizacji konfiguracji serwera i " -"wyśledzić czasochłonne zapytania. W tym ostatnim przypadku trzeba będzie " -"ustawić log_output dla 'TABLE' i albo mają slow_query_log lub general_log " -"włączone. Należy jednak pamiętać, że general_log produkuje duże ilości " -"danych i zwiększa obciążenie serwera nawet o 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Niestety serwer bazy danych nie obsługuje rejestracji do tabeli, która jest " -"wymagana do analizy logów bazy danych za pomocą phpMyAdmin. Rejestracja do " -"tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać " -"funkcji wykresów serwera jednak." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Korzystanie z monitora:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Twoja przeglądarka odświeży wszystkie wyświetlane wykresy w regularnych " -"odstępach czasu. Możesz dodawać wykresy i zmienić częstotliwość odświeżania " -"w 'Ustawienia' lub usunąć wykres za pomocą ikony zębatki dla każdego wykresu." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Aby wyświetlić zapytania z dzienników, wybierz odpowiedni przedział czasowy " -"na każdym wykresie, przytrzymując lewy przycisk myszy i przesuwanie na " -"wykresie. Po potwierdzeniu, to załaduje spis pogrupowanych pytań, nie można " -"kliknąć na wszelkich występujących instrukcji SELECT do dalszych analiz." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Proszę zwrócić uwagę:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Włączenie general_log może zwiększa obciążenie serwera o 5-15%. Również miej " -"świadomość, że generowanie statystyk z dzienników jest obciążenie intensywne " -"zadań, więc wskazane jest, aby wybrać tylko niewielki przedział czasowy i " -"wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " -"wymagane." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Dodaj wykres" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Ustawiony wykres" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Zmienna statusu(ów)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Wybierz serię:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Najczęściej monitorowany" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "lub wpisz nazwę zmiennej:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Wyświetl jako wartości różnicy" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Zastosuj dzielnik" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Dołącz urządzenia do wartości danych" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Dodaj tę serię" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Wyczyść serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Seria na wykresie:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statystyki Log" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Wybrany zakres czasu:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"Wybierz z którego dziennika chcesz statystyki które mają być generowane." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Wyniki są pogrupowane według zapytania tekstu." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizuj zapytanie" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekund" -msgstr[2] "%d sekundę" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuty" -msgstr[2] "%d minuty" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Uruchom monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrukcje/Setup" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Gotowe przestawienie/edycji wykresów" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Włącz podświetlanie" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Częstotliwość odświeżania" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Kolumny wykresu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Układ wykresu" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " -"Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Przywróć wartość domyślną" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12234,9 +12240,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Proszę stworzyć serwer zapisu internetowej folderze [em]koniguracji[/em] w " -"głównym katalogu phpMyAdmina w sposób opisany w " -"[doc@setup_script]dokumentacji (po angielsku)[/doc]. W przeciwnym razie " -"będzie tylko mogli pobrać lub wyświetlić to." +"głównym katalogu phpMyAdmina w sposób opisany w [doc@setup_script]" +"dokumentacji (po angielsku)[/doc]. W przeciwnym razie będzie tylko mogli " +"pobrać lub wyświetlić to." #: setup/frames/index.inc.php:60 msgid "" @@ -12473,8 +12479,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"W przypadku korzystania z uwierzytelniania cookie i przechowywać " -"%sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania " +"W przypadku korzystania z uwierzytelniania cookie i przechowywać %" +"sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania " "muszą być ustawione na wartość mniejsza lub równa jej." #: setup/lib/index.lib.php:314 @@ -12496,8 +12502,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Ustaw [kbd]konfigurację[/kbd] typu uwierzytelniania i zawiera nazwę " "użytkownika i hasło automatycznego logowania, która nie jest pożądanym " @@ -12547,24 +12553,24 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne." msgid "Wrong data" msgstr "Nieprawidłowe dane" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Zakładka nie utworzona" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Pokaż jako kod PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Weryfikacje SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12576,21 +12582,11 @@ msgstr "" "Tabela ta nie zawiera unikalnej kolumny. Funkcje związane z edycją siatki, " "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Pamiętaj zapytanie SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Nazwa" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Brak danych do wyświetlenia" @@ -12811,31 +12807,31 @@ msgstr "Wybierz kolumny do wyświetlenia" msgid "No column selected." msgstr "Nie żadnych wybrano rekordów" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Raport śledzenia tabeli `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Wersja %1$s stworzona, śledzenie dla %2$s jest aktywne." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Śledzenie dla %1$s zostało wyłączone w wersji %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Śledzenie dla %1$s zostało włączone w wersji %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instrukcje SQL zostały wykonane." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12843,114 +12839,114 @@ msgstr "" "Możesz wykonać zrzut poprzez tworzenie i używanie tymczasowej bazy danych. " "Upewnij się, że masz uprawnienia do tego." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Ujmij w komentarz te dwa wiersze jeśli ich nie potrzebujesz." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Instrukcje SQL zostały wyeksportowane. Proszę skopiować zrzut lub go wykonać." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Wersja %s migawki (kod SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Śledzenie definicją danych pomyślnie usunięte" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Śledzenie manipulacją danymi pomyślnie usunięte" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Śledzenie instrukcji" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Pokaż %1$s w okresie od %2$s do %3$s wg użytkownika %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Usuń wiersz śledzenia danych z raportu" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Brak danych" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instrukcja definiowania danych" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instrukcja przetwarzania danych" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Zrzut SQL (plik do pobrania)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Zrzut SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ta opcja zamienia twoją tabelę i zawarte w niej dane." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Wykonanie SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksportuj jako %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Pokaż wersje" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktywuj śledzenie dla %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Dezaktywuj teraz" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktywuj śledzenie %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktywuj teraz" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Utwórz wersję %1$s dla %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Śledź te instrukcje definicji danych:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Śledź te instrukcje manipulowania danymi:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Utwórz wersję" @@ -13350,8 +13346,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Bieżący współczynnik wolnej pamięci pamięci podręcznej zapytań do " "całkowitego zapytania wielkości cache to %s%%. Powinno być powyżej 80%%" @@ -13507,8 +13503,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% wszelkiego rodzaju spowodować tabel tymczasowych, ta wartość ta powinna " "być niższa niż 10%%." @@ -14061,8 +14057,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej " -"1%%" +"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej 1%" +"%" #: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" @@ -14279,6 +14275,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawiony na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Nagłówki co %s wierszy" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14576,13 +14575,13 @@ msgstr "concurrent_insert jest ustawiony na 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Gdy jest ustawione na [kbd]nested[/kbd], alias nazwy tabeli jest używany " -#~ "tylko do rozdzielania/zagnieżdżania tabel zgodnie z dyrektywą " -#~ "$cfg['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako " +#~ "tylko do rozdzielania/zagnieżdżania tabel zgodnie z dyrektywą $cfg" +#~ "['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako " #~ "alias, a nazwa tabeli pozostaje niezmieniona" #~ msgid "Display table comment instead of its name" @@ -15051,8 +15050,8 @@ msgstr "concurrent_insert jest ustawiony na 0" #~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ " #~ "6.29[/doc]" #~ msgstr "" -#~ "W wyniku tej kwerendy nie może być używany dla wykresu. Zobacz " -#~ "[doc@faq6-29]FAQ 6.29[/doc]" +#~ "W wyniku tej kwerendy nie może być używany dla wykresu. Zobacz [doc@faq6-" +#~ "29]FAQ 6.29[/doc]" #~ msgid "Theme / Style" #~ msgstr "Motyw / Styl" diff --git a/po/pt.po b/po/pt.po index 37095d8c8f..75b19be424 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-11 00:09+0200\n" "Last-Translator: JP KAN \n" "Language-Team: Portuguese \n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Pesquisar:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Pesquisar:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Executar" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nome do Índice" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descrição" @@ -107,7 +107,7 @@ msgstr "" "O ficheiro %s não está disponível no seu sistema, por favor visite www." "phpmyadmin.net para mais informações." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "A base de dados %1$s foi criada." @@ -137,7 +137,7 @@ msgstr "Comentários da tabela" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Coluna" @@ -160,7 +160,7 @@ msgstr "Coluna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipo" @@ -177,7 +177,7 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulo" @@ -192,7 +192,7 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Omissão" @@ -234,9 +234,9 @@ msgstr "Comentários" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Não" @@ -261,9 +261,9 @@ msgstr "Não" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Sim" @@ -315,7 +315,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -391,7 +391,7 @@ msgstr "Tabelas em tracking" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de Dados" @@ -399,17 +399,17 @@ msgstr "Base de Dados" msgid "Last version" msgstr "Última versão" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Criado" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Actualizado" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Estado" @@ -422,7 +422,7 @@ msgstr "Estado" msgid "Action" msgstr "Acções" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Mostrar" @@ -438,11 +438,11 @@ msgstr "Apagar dados de tracking para esta tabela" msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "activo" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "inactivo" @@ -450,11 +450,11 @@ msgstr "inactivo" msgid "Versions" msgstr "Versões" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Relatório de tracking" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snapshot da estrutura" @@ -608,8 +608,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Provavelmente tentou importar um ficheiro demasiado grande. Por favor veja a " "%sdocumentação%s para encontrar formas de contornar esta limitação." @@ -661,7 +661,7 @@ msgstr "" "Não foi possível carregar os import plugins, por favor verifique a sua " "instalação!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -688,7 +688,7 @@ msgstr "" "significa que o phpMyAdmin não conseguirá terminar este import, sem que se " "incremente os tempos de limite de php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -914,7 +914,7 @@ msgstr "" "Servidor a correr com Suhosin. Por favor verifique a %sdocumentação%s para " "eventuais problemas." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." @@ -923,7 +923,7 @@ msgstr "Os comandos \"DROP DATABASE\" estão inibidos." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Estará prestes a DESTRUIR uma base de dados completa!" @@ -1007,8 +1007,8 @@ msgstr "Recarregar Privilégios" msgid "Removing Selected Users" msgstr "Removendo os utilizadores seleccionados" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Fechar" @@ -1135,13 +1135,13 @@ msgstr "Bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1180,7 +1180,7 @@ msgid "Traffic" msgstr "Tráfego" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Configurações" @@ -1200,13 +1200,14 @@ msgstr "Adicionar gráfico a grelha" msgid "Please add at least one variable to the series" msgstr "Por favor adicione pelo menos uma variável à serie" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nenhum" @@ -1306,7 +1307,7 @@ msgstr "Modificar configurações" msgid "Current settings" msgstr "Configurações atuais" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Titulo do gráfico" @@ -1395,7 +1396,7 @@ msgstr "Explicar SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tempo" @@ -1493,7 +1494,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1550,7 +1551,7 @@ msgid "Cancel" msgstr "Cancelar" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Carregando" @@ -1698,7 +1699,7 @@ msgstr "Esconder Caixa do query" msgid "Show query box" msgstr "Mostrar Caixa do query" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1711,7 +1712,7 @@ msgstr "Edita" msgid "No rows selected" msgstr "Nenhum registo(linha) seleccionado" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1796,7 +1797,7 @@ msgstr "Conteúdo do ponto de dados" msgid "Ignore" msgstr "Ignora" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copiar" @@ -1812,7 +1813,7 @@ msgstr "Segmento de Reta" msgid "Polygon" msgstr "Polígono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2300,33 +2301,33 @@ msgstr "por hora" msgid "per day" msgstr "por dia" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "O arquivo de configuração existente (%s) não pode ser lido." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissões errada no ficheiro de configuração. Não deve ser editável por " "todos!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2478,14 +2479,14 @@ msgstr "Procurar" msgid "Delete the matches for the %s table?" msgstr "Apagar os semelhantes para a %s tabela?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Apagar" @@ -2578,16 +2579,11 @@ msgstr "horizontal (cabeçalhos rodados)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeçalho a cada %s linhas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Ordenar por chave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2614,91 +2610,91 @@ msgstr "Ordenar por chave" msgid "Options" msgstr "Opções" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Chave de relação" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Coluna de visualização relacional" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Mostrar conteúdo binário" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Exibir conteúdos BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar conteúdo binário como HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Ocultar transformações do navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Texto bem conhecido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Binario bem conhecido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Termina" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Pode ser aproximado. Veja o [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "na pesquisa" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a " -"%sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a %" +"sdocumentação%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Mostrando registos" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2707,8 +2703,8 @@ msgstr "O Query demorou %01.4f sec" msgid "With selected:" msgstr "Com os seleccionados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2719,45 +2715,45 @@ msgstr "Com os seleccionados:" msgid "Check All" msgstr "Todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Criar visualização" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Vista de impressão" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link não encontrado" @@ -2836,38 +2832,38 @@ msgstr "Nenhum indíce definido!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Quantidade" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Agrupamento (Collation)" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentário" @@ -2908,7 +2904,7 @@ msgstr "Vista" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estrutura" @@ -3053,15 +3049,15 @@ msgstr[1] "%1$d linha(s) inseridas." msgid "Error while creating PDF:" msgstr "Erro ao criar o PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Não foi possível salvar a tabela recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabelas Recentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Não existem tabelas recentes" @@ -3239,8 +3235,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Falha ao limpar as preferências de interface da tabela (consulte " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Falha ao limpar as preferências de interface da tabela (consulte $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1603 #, php-format @@ -3310,7 +3306,7 @@ msgid "Maximum rows to plot" msgstr "Número máximo de linhas para traçar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" @@ -3416,14 +3412,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3469,9 +3465,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Um carimbo temporal, intervalo é desde 1970-01-01 00:00:01 UTC até " -"2038-01-09 03:14:07 UTC, guardado como um número de segundos desde a época " -"(1970-01-01 00:00:00 UTC)" +"Um carimbo temporal, intervalo é desde 1970-01-01 00:00:01 UTC até 2038-01-" +"09 03:14:07 UTC, guardado como um número de segundos desde a época (1970-01-" +"01 00:00:00 UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:729 #, php-format @@ -3685,7 +3681,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3746,7 +3742,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "na linha" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfil" @@ -4179,8 +4175,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Frase secreta utilizada para encriptar cookies na autenticação por " -"[kbd]cookie[/kbd]" +"Frase secreta utilizada para encriptar cookies na autenticação por [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4221,8 +4217,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Define que tipo de controles de edição devem ser utilizados pelas colunas " -"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo, " -"[kbd]textarea[/kbd] - permite quebra de linhas em colunas" +"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo, [kbd]" +"textarea[/kbd] - permite quebra de linhas em colunas" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4230,8 +4226,8 @@ msgstr "Edição de colunas CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4788,9 +4784,8 @@ msgstr "Títulos das páginas" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5619,8 +5614,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]" +"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5629,11 +5624,11 @@ msgstr "Tabela de favoritos" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Deixe em branco quando não houver colunas de comentário/mime type, " "sugeridas: [kbd]pma_column_info[/kbd]" @@ -5668,8 +5663,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Um utilizador especial MySQL será configurado com permissões limitadas, mais " -"informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/" -"controluser]wiki[/a]" +"informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" +"[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5753,8 +5748,8 @@ msgstr "Ocultar bases de dados" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5836,8 +5831,8 @@ msgstr "Palavra-passe para config-auth" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Deixe em branco se não há suporte de esquema PDF, sugerido: " -"[kbd]pma_pdf_pages[/kbd]" +"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5870,8 +5865,8 @@ msgstr "Porta do servidor" #: libraries/config/messages.inc.php:418 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]" @@ -5889,11 +5884,11 @@ msgstr "Tabela utilizada recentemente" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" #| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]" +"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5909,8 +5904,8 @@ msgstr "MOSTRAR comandos DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Consulte [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de " "autenticação[/a] para obter um exemplo" @@ -5948,8 +5943,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Deixe em branco se não há suporte de esquema PDF, sugerido: " -"[kbd]pma_pdf_pages[/kbd]" +"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5963,8 +5958,8 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"Deixe em branco se não há suporte de esquema PDF, sugerido: " -"[kbd]pma_pdf_pages[/kbd]" +"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:434 msgid "Display columns table" @@ -5978,8 +5973,8 @@ msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"Deixe em branco se não há suporte de esquema PDF, sugerido: " -"[kbd]pma_pdf_pages[/kbd]" +"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -6032,11 +6027,11 @@ msgstr "Itens" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Deixe em branco se não há suporte a histórico de consulta SQL, sugerido: " "[kbd]pma_history[/kbd]" @@ -6062,8 +6057,8 @@ msgstr "Versão do servidor" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" #| "kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Deixe em branco sem suporte de Designer, sugerido: [kbd]pma_designer_coords[/" "kbd]" @@ -6262,8 +6257,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Utilizador :" @@ -6682,7 +6677,7 @@ msgstr "Base de Dados" msgid "Table(s):" msgstr "Tabelas" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6738,8 +6733,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7256,8 +7251,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7275,7 +7270,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." @@ -7398,12 +7393,12 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7458,7 +7453,7 @@ msgstr "Substituir prefixo da tabela" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7801,17 +7796,17 @@ msgid "Drop the database (DROP)" msgstr "Apagar a Base de Dados (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Somente a estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Apenas dados" @@ -7984,11 +7979,11 @@ msgstr "Bemvindo ao %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" -"%2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" +"2$s pode ser utilizado para criar um." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8270,7 +8265,7 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8278,7 +8273,7 @@ msgstr "Máquina" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8296,7 +8291,7 @@ msgstr "versão do PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8650,8 +8645,8 @@ msgstr "" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 #, fuzzy #| msgid "" -#| "ys the contents of the field as-is, without running it through " -#| "ecialchars(). That is, the field is assumed to contain valid HTML." +#| "ys the contents of the field as-is, without running it through ecialchars" +#| "(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -9420,7 +9415,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9594,7 +9589,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "versão do PHP" @@ -10062,8 +10057,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " @@ -10078,60 +10073,275 @@ msgstr "O utilizador selecionado não se encontra na tabela de privilégios." msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "por segundo" +msgstr[1] "por segundo" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "em uso" +msgstr[1] "em uso" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Estatísticas dos registos" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Seleccionar Tabelas" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Tipo de Query" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Adiciona novo campo" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Remover a Base de Dados" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Seleccionar Tabelas" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Acrescenta um utilizador" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "Comando SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +msgid "Start Monitor" +msgstr "Estado" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Ativar destaque" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Gerado por" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Adicionar/Remover Campos" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Gerado por" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Apenas dados" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Outros" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Tempo Total:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Fechar" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Marcar este comando SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiqueta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Deixar todos os utilizadores acederem a este marcador" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10152,10 +10362,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Deixar todos os utilizadores acederem a este marcador" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10295,7 +10501,7 @@ msgstr "Verificar tabelas com overhead" msgid "Sort" msgstr "Ordenação" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10464,7 +10670,7 @@ msgstr "Em uso" msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10631,7 +10837,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" @@ -10690,7 +10896,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Chinês Tradicional" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10765,48 +10971,48 @@ msgstr "Criar" msgid "Active options" msgstr "Opções da tabela" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "A tabela %s foi eliminada" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Utilização" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar um novo índice" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do Utilizador" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10836,7 +11042,7 @@ msgstr "Relação interna adicionada" msgid "Relation deleted" msgstr "Relação apagada" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Erro ao gravar as coordenadas para o Designer." @@ -11263,206 +11469,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Adiciona novo campo" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Remover a Base de Dados" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Seleccionar Tabelas" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Acrescenta um utilizador" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "Comando SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Estatísticas dos registos" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Seleccionar Tabelas" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Tipo de Query" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "por segundo" -msgstr[1] "por segundo" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "em uso" -msgstr[1] "em uso" - -#: server_status_monitor.php:674 -#, fuzzy -msgid "Start Monitor" -msgstr "Estado" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Ativar destaque" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Gerado por" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Adicionar/Remover Campos" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12361,8 +12367,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12405,28 +12411,28 @@ msgstr "" msgid "Wrong data" msgstr "Sem bases de dados" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Marcador %s criado" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12439,21 +12445,11 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Marcar este comando SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiqueta" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12693,152 +12689,152 @@ msgstr "Escolha a coluna para mostrar" msgid "No column selected." msgstr "Nenhum registo(linha) seleccionado" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Detecção de Alterações está activa." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Detecção de Alterações está activa." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Apagar dados de tracking para esta tabela" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Sem bases de dados" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Dados" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de Exportação" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Apagar dados de tracking para esta tabela" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Criar versão" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Criar versão" @@ -13222,8 +13218,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13353,8 +13349,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14064,6 +14060,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definida com o valor 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeçalho a cada %s linhas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/pt_BR.po b/po/pt_BR.po index 742dc8af6c..60a4f47d87 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-09 06:05+0200\n" "Last-Translator: Rodrigo Souza \n" "Language-Team: Portuguese (Brazil) \n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Procurar:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Procurar:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Executar" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nome da chave" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descrição" @@ -107,7 +107,7 @@ msgstr "" "O arquivo %s não está disponível no sistema, por favor visite www.phpmyadmin." "net para mais informações." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "O banco de dados %1$s foi criado." @@ -135,7 +135,7 @@ msgstr "Comentários de tabela:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Coluna" @@ -158,7 +158,7 @@ msgstr "Coluna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipo" @@ -175,7 +175,7 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulo" @@ -190,7 +190,7 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Padrão" @@ -232,9 +232,9 @@ msgstr "Comentários" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Não" @@ -259,9 +259,9 @@ msgstr "Não" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Sim" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -389,7 +389,7 @@ msgstr "Tabelas rastreadas" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Banco de dados" @@ -397,17 +397,17 @@ msgstr "Banco de dados" msgid "Last version" msgstr "Última versão" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Criado" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Atualizado" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -420,7 +420,7 @@ msgstr "Status" msgid "Action" msgstr "Ação" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Mostrar" @@ -436,11 +436,11 @@ msgstr "Excluir dados de monitoramento desta tabela" msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "ativo" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "inativo" @@ -448,11 +448,11 @@ msgstr "inativo" msgid "Versions" msgstr "Versões" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Relatório de monitoramento" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Vizualização da estrutura" @@ -600,8 +600,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentação%s para resolver esse problema." @@ -651,7 +651,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível carregar os plugins, verifique sua instalação!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -678,7 +678,7 @@ msgstr "" "dizer que o phpMyAdmin não será capaz de realizar essa importação a menos " "que você aumente o tempo limite do PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -889,7 +889,7 @@ msgstr "" "Servidor rodando com Suhosin. Favor utilizar a %sdocumentação%s para " "possíveis problemas." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." @@ -898,7 +898,7 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR um banco de dados completamente!" @@ -982,8 +982,8 @@ msgstr "Recarregando privilégios" msgid "Removing Selected Users" msgstr "Removendo os usuários selecionados" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Fechar" @@ -1110,13 +1110,13 @@ msgstr "Bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1155,7 +1155,7 @@ msgid "Traffic" msgstr "Tráfego" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Configurações" @@ -1181,13 +1181,14 @@ msgstr "Adicionar gráfico à grade" msgid "Please add at least one variable to the series" msgstr "Por favor adicione no mínimo uma variável à série" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nenhum" @@ -1291,7 +1292,7 @@ msgstr "Configurações atuais" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Título do relatório/gráfico/tabela" @@ -1380,7 +1381,7 @@ msgstr "Demonstrar saída" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tempo" @@ -1478,7 +1479,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1535,7 +1536,7 @@ msgid "Cancel" msgstr "Cancelar" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Carregando" @@ -1685,7 +1686,7 @@ msgstr "Ocultar caixa de consulta" msgid "Show query box" msgstr "Mostrar caixa de consulta" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1698,7 +1699,7 @@ msgstr "Editar" msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1783,7 +1784,7 @@ msgstr "Conteúdo do ponteiro de dados" msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copiar" @@ -1799,7 +1800,7 @@ msgstr "Linha" msgid "Polygon" msgstr "Polígono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2288,33 +2289,33 @@ msgstr "por hora" msgid "per day" msgstr "por dia" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Arquivo de configuração existente (%s) não pode ser lido." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissões incorretas no arquivo de configuração, não deveria permitir " "escrita por qualquer um!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2457,14 +2458,14 @@ msgstr "Visualizar" msgid "Delete the matches for the %s table?" msgstr "Excluir correspondentes para a tabela %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Remover" @@ -2551,16 +2552,11 @@ msgstr "horizontal (cabeçalhos rotacionados)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeçalho a cada %s linhas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Ordenar pela chave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2587,91 +2583,91 @@ msgstr "Ordenar pela chave" msgid "Options" msgstr "Opções" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Chave de relação" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Exibir coluna relacional" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Mostrar conteúdo binário" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Exibir conteúdo BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar conteúdo binário como HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Ocultar transformações do navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Texto bem conhecido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Binário bem conhecido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Finalizar" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Pode ser aproximado. Veja a [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "na consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta view tem pelo menos esse número de linhas. Por favor, consulte a " -"%sdocumentação%s." +"Esta view tem pelo menos esse número de linhas. Por favor, consulte a %" +"sdocumentação%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2680,8 +2676,8 @@ msgstr "Consulta levou %01.4f segundos" msgid "With selected:" msgstr "Com marcados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2692,45 +2688,45 @@ msgstr "Com marcados:" msgid "Check All" msgstr "Marcar todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Criar view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Imprimir view" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Imprimir view (com textos completos)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Link não encontrado" @@ -2809,38 +2805,38 @@ msgstr "Nenhum índice definido!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalidade" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Colação" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentário" @@ -2882,7 +2878,7 @@ msgstr "Visualizar" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estrutura" @@ -3027,15 +3023,15 @@ msgstr[1] "%1$d linhas inseridas." msgid "Error while creating PDF:" msgstr "Erro ao criar o PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Não foi possível salvar a tabela recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabelas recentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Não existem tabelas recentes" @@ -3277,7 +3273,7 @@ msgid "Maximum rows to plot" msgstr "Número máximo de linhas para traçar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" @@ -3389,16 +3385,16 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Um número curto de ponto flutuante, os valores permitidos são: de " -"-3,402823466E+38 a -1,175494351E-38, 0 e de 1,175494351E-38 a 3,402823466E+38" +"Um número curto de ponto flutuante, os valores permitidos são: de -" +"3,402823466E+38 a -1,175494351E-38, 0 e de 1,175494351E-38 a 3,402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Um número de ponto flutuante de dupla precisão (longo), os valores " @@ -3689,7 +3685,7 @@ msgstr "Uma enumeração, escolhida de uma lista de valores definidos" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Query SQL:" @@ -3748,7 +3744,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Em linha" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfil" @@ -4171,8 +4167,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Frase secreta utilizada para encriptar cookies na autenticação por " -"[kbd]cookie[/kbd]" +"Frase secreta utilizada para encriptar cookies na autenticação por [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4213,8 +4209,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Define quais tipo de controles de edição devem ser utilizados pelas colunas " -"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo " -"[kbd]textarea[/kbd] - permite quebras de linha em colunas" +"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo [kbd]" +"textarea[/kbd] - permite quebras de linha em colunas" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4222,11 +4218,11 @@ msgstr "Edição de colunas CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" -"Um editor amigável para editar consultas SQL ([a@http://codemirror." -"net/]CodeMirror[/a]) com destaque de sintaxe e número de linhas" +"Um editor amigável para editar consultas SQL ([a@http://codemirror.net/]" +"CodeMirror[/a]) com destaque de sintaxe e número de linhas" #: libraries/config/messages.inc.php:31 msgid "Enable CodeMirror" @@ -4762,13 +4758,12 @@ msgstr "Títulos de páginas" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Especifica o texto da barra de título do browser. Veja a " -"[doc@cfg_TitleTable]documentação[/doc] para strings mágicas que podem ser " -"usadas para conseguir valores especiais." +"Especifica o texto da barra de título do browser. Veja a [doc@cfg_TitleTable]" +"documentação[/doc] para strings mágicas que podem ser usadas para conseguir " +"valores especiais." #: libraries/config/messages.inc.php:192 #: libraries/navigation/NavigationHeader.class.php:204 @@ -4889,8 +4884,8 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Se você quiser usar o Validador SQL, você deve estar ciente de que " -"[strong]todas as instruções SQL são armazenadas de forma anônima para fins " +"Se você quiser usar o Validador SQL, você deve estar ciente de que [strong]" +"todas as instruções SQL são armazenadas de forma anônima para fins " "estatísticos[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL " "Validator[/a], Copyright 2002 Upright Database Technology. Todos os direitos " "reservados.[/em]" @@ -5568,8 +5563,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Deixe em branco para não permitir [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]marcações[/a], sugerido: [kbd]pma_bookmark[/kbd]" +"Deixe em branco para não permitir [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"marcações[/a], sugerido: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5577,11 +5572,11 @@ msgstr "Tabela de favoritos" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Deixe em branco quando não houver comentários/tipos mime, sugestão: " -"[kbd]pma_column_info[/kbd]" +"Deixe em branco quando não houver comentários/tipos mime, sugestão: [kbd]" +"pma_column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5651,8 +5646,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Deixe em branco quando não houver suporte ao Designer, sugestão: " -"[kbd]pma_designer_coords[/kbd]" +"Deixe em branco quando não houver suporte ao Designer, sugestão: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5800,8 +5795,8 @@ msgstr "Tabelas recentemente usadas" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Deixe em branco se não houver suporte a [a@http://wiki.phpmyadmin.net/pma/" "relation]links de relação[/a], sugestão: [kbd]pma_relation[/kbd]" @@ -5820,8 +5815,8 @@ msgstr "Comando SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Veja os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de " "autenticação [/a] para ver um exemplo" @@ -5857,8 +5852,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Deixe em branco se não houver suporte a esquema PDF, sugestão: " -"[kbd]pma__table_coords[/kbd]" +"Deixe em branco se não houver suporte a esquema PDF, sugestão: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5882,8 +5877,8 @@ msgid "" "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" "Deixe em branco para não usar tabelas' \"persistentes\" com preferências de " -"interfaces de usuário em todas as sessões, sugestão: " -"[kbd]pma__table_uiprefs[/kbd]" +"interfaces de usuário em todas as sessões, sugestão: [kbd]pma__table_uiprefs" +"[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -5935,8 +5930,8 @@ msgstr "Comandos a rastrear" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Deixe em branco para não oferecer suporte a rastreamento de consultas SQL, " "sugestão: [kbd]pma__tracking[/kbd]" @@ -5959,8 +5954,8 @@ msgstr "Criar versões automaticamente" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Deixe em branco para não usar armazenamento de preferências do usuário em " "banco de dados, sugestão: [kbd]pma__userconfig[/kbd]" @@ -6087,8 +6082,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Exibe link para saída de [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Exibe link para saída de [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6173,8 +6168,8 @@ msgstr "" "Se você tiver um nome de usuário personalizado, especifique-o aqui (o padrão " "é [kbd]anônimo[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nome de usuário" @@ -6241,8 +6236,8 @@ msgid "" msgstr "" "Insira os proxies como [kbd]IP: Cabeçalho HTTP de confiança[/kbd]. O exemplo " "seguinte especifica que o phpMyAdmin deve confiar no cabeçalho " -"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxy 1.2.3.4:[br]" -"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" +"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxy 1.2.3.4:[br][kbd]" +"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" #: libraries/config/messages.inc.php:512 msgid "List of trusted proxies for IP allow/deny" @@ -6589,7 +6584,7 @@ msgstr "Banco(s) de dados:" msgid "Table(s):" msgstr "Tabela(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Registros:" @@ -6638,8 +6633,8 @@ msgstr ", @TABLE@ se tornará o nome da tabela" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -6791,8 +6786,8 @@ msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" -"O nome de um arquivo compactado deve terminar em .[formato]." -"[compactação]. Exemplo: .sql.zip" +"O nome de um arquivo compactado deve terminar em .[formato].[compactação]" +". Exemplo: .sql.zip" #: libraries/display_import.lib.php:245 msgid "File uploads are not allowed on this server." @@ -7196,8 +7191,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Documentação e mais informações sobre PBXT podem ser encontradas na %sPágina " "Inicial da PrimeBase XT%s." @@ -7215,7 +7210,7 @@ msgid "No data found for GIS visualization." msgstr "Não foram encontrados dados para a visualização GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou um conjunto vazio (ex. zero registros)." @@ -7335,11 +7330,11 @@ msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -7384,7 +7379,7 @@ msgstr "Adicionar prefixo de tabelas:" msgid "Add prefix" msgstr "Adicionar índice" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Você realmente deseja executar a query SQL a seguir?" @@ -7713,17 +7708,17 @@ msgid "Drop the database (DROP)" msgstr "Apagar o banco de dados (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Somente estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Somente dados" @@ -7884,11 +7879,11 @@ msgstr "Bem vindo ao %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Você provavelmente não criou o arquivo de configuração. Você deve usar o " -"%1$sscript de setup%2$s para criar um." +"Você provavelmente não criou o arquivo de configuração. Você deve usar o %1" +"$sscript de setup%2$s para criar um." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8138,13 +8133,13 @@ msgstr "Colocar os nomes das colunas na primeira linha:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Host:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Tempo de geração:" @@ -8158,7 +8153,7 @@ msgstr "Versão do PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Banco de dados:" @@ -9285,7 +9280,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9448,7 +9443,7 @@ msgid "Library" msgstr "Biblioteca" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versão" @@ -9904,8 +9899,8 @@ msgstr "Visão geral dos usuários" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " @@ -9920,46 +9915,268 @@ msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." msgid "You have added a new user." msgstr "Você adicionou um novo usuário." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segundo" +msgstr[1] "%d segundos" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estatísticas de log" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Faixa de tempo selecionada:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Somente obter os comandos SELECT, INSERT, UPDATE e DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Remova dados de variável em comandos INSERT para melhor agrupamento" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Escolha de qual log você deseja que as estatísticas sejam geradas." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultados são agrupados por texto de consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analisador de consulta" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instruções do monitor" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"O Monitor do phpMyAdmin pode auxiliá-lo na otimização da configuração do " +"servidor e rastrear consultas com tempos intensos. Para este último, você " +"precisará definir log_output na 'TABLE', e ter slow_query_log ou general_log " +"habilitado. Note, porém, que general_log produz muitos dados e aumenta a " +"carga do servidor em até 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Infelizmente seu servidor de banco de dados não suporta gravação de logs em " +"tabela, o que é um requisito para análise de logs do banco de dados com " +"phpMyAdmin. A gravação de logs para tabela é suportada pelo MySQL 5.1.6 e " +"posteriores. Apesar disso, você ainda pode utilizar as funcionalidades de " +"gráficos no servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Usando o monitor:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Seu navegador vai atualizar todos os gráficos exibidos em intervalo regular. " +"Você pode adicionar gráficos e alterar a taxa de atualização em " +"\"Configurações\", ou remover qualquer gráfico usando o ícone da engrenagem " +"em cada gráfico." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Para exibir consultas a partir dos logs, selecione o intervalo de tempo " +"relevante em cada gráfico segurando o botão esquerdo do mouse e deslocando " +"pelo gráfico. Uma vez confirmada, isso vai carregar uma tabela de consultas " +"agrupadas, e lá é possível clicar em qualquer ocorrência de comandos SELECT " +"para, então, analisá-los." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Favor perceber que:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Habilitar o general_log pode aumentar a carga do servidor entre 5 e 15%. " +"Também esteja ciente de que a criação de estatísticas a partir de logs é uma " +"tarefa de carga intensiva. Então, aconselha-se a selecionar somente um " +"pequeno intervalo de tempo, desabilitar o general_log e esvaziar sua tabela " +"assim que o monitoramento não for mais necessário." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Adicionar gráfico" + +# The word "chart" in brasilian portuguese can mean either "Table = tabela" or +# "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it +# depends of the context. +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gráfico predefinido" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variável(is) de status" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Selecione série:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Normalmente monitorado" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ou digite o nome da variável:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Exibir como valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar um divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Anexar unidade a valores de dados" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Adicionar esta série" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Limpar séries" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Séries no gráfico:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Iniciar monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruções/Configurações" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Terminou de arrastar (reorganizar) os gráficos" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Habilita o arraste de gráficos" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Taxa de atualização" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Colunas do gráfico" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Organização de gráficos" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"A organização dos gráficos é armazenada no armazenamento local dos " +"navegadores. Você pode exportá-la, se você tiver uma configuração complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Resetar para o padrão" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Gerado por:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Perfil detalhado" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Ordem" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Índice por estado" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Tempo Total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Chamadas" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Marcar essa consulta SQL" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Rótulo:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Deixar qualquer usuário acessar esse marcador" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9978,10 +10195,6 @@ msgstr "Limpar" msgid "Bookmark this SQL query:" msgstr "Marcar essa query SQL:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Deixar qualquer usuário acessar esse marcador" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Substituir marcador de mesmo nome existente" @@ -10121,7 +10334,7 @@ msgstr "Verificar tabelas com sobrecarga" msgid "Sort" msgstr "Ordenar" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nenhum wrap (padrão: none)" @@ -10275,7 +10488,7 @@ msgstr "Efetivo" msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Erro de consulta" @@ -10426,7 +10639,7 @@ msgstr "Erro no arquivo ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Erro fatal: A navegação somente pode ser acessada via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modificações foram salvas" @@ -10482,7 +10695,7 @@ msgstr "Mudar para pequeno/grande" msgid "Toggle relation lines" msgstr "Alternar linhas de relação" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" @@ -10540,39 +10753,39 @@ msgstr "Agregar" msgid "Active options" msgstr "Opções ativas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "A página foi criada" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Falha na criação da página" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Página:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar da página selecionada" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportar para a página selecionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Criar uma página e exportar para ela" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nome da nova página: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exportar/Importar para escala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomendado" @@ -10600,7 +10813,7 @@ msgstr "Adicionado relacionamento interno" msgid "Relation deleted" msgstr "Relacionamento apagado" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Erro ao salvar coordenada para o Designer." @@ -11050,215 +11263,6 @@ msgstr "" "de cada vez, observar ou testar a performance do seu banco de dados, e " "desfazer a alteração se não houver melhoramentos claramente mensuráveis." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instruções do monitor" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"O Monitor do phpMyAdmin pode auxiliá-lo na otimização da configuração do " -"servidor e rastrear consultas com tempos intensos. Para este último, você " -"precisará definir log_output na 'TABLE', e ter slow_query_log ou general_log " -"habilitado. Note, porém, que general_log produz muitos dados e aumenta a " -"carga do servidor em até 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Infelizmente seu servidor de banco de dados não suporta gravação de logs em " -"tabela, o que é um requisito para análise de logs do banco de dados com " -"phpMyAdmin. A gravação de logs para tabela é suportada pelo MySQL 5.1.6 e " -"posteriores. Apesar disso, você ainda pode utilizar as funcionalidades de " -"gráficos no servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Usando o monitor:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Seu navegador vai atualizar todos os gráficos exibidos em intervalo regular. " -"Você pode adicionar gráficos e alterar a taxa de atualização em " -"\"Configurações\", ou remover qualquer gráfico usando o ícone da engrenagem " -"em cada gráfico." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Para exibir consultas a partir dos logs, selecione o intervalo de tempo " -"relevante em cada gráfico segurando o botão esquerdo do mouse e deslocando " -"pelo gráfico. Uma vez confirmada, isso vai carregar uma tabela de consultas " -"agrupadas, e lá é possível clicar em qualquer ocorrência de comandos SELECT " -"para, então, analisá-los." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Favor perceber que:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Habilitar o general_log pode aumentar a carga do servidor entre 5 e 15%. " -"Também esteja ciente de que a criação de estatísticas a partir de logs é uma " -"tarefa de carga intensiva. Então, aconselha-se a selecionar somente um " -"pequeno intervalo de tempo, desabilitar o general_log e esvaziar sua tabela " -"assim que o monitoramento não for mais necessário." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Adicionar gráfico" - -# The word "chart" in brasilian portuguese can mean either "Table = tabela" or -# "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it -# depends of the context. -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Gráfico predefinido" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variável(is) de status" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Selecione série:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Normalmente monitorado" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ou digite o nome da variável:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Exibir como valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar um divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Anexar unidade a valores de dados" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Adicionar esta série" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Limpar séries" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Séries no gráfico:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estatísticas de log" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Faixa de tempo selecionada:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Somente obter os comandos SELECT, INSERT, UPDATE e DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Remova dados de variável em comandos INSERT para melhor agrupamento" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Escolha de qual log você deseja que as estatísticas sejam geradas." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultados são agrupados por texto de consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analisador de consulta" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segundo" -msgstr[1] "%d segundos" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minutos" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Iniciar monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruções/Configurações" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Terminou de arrastar (reorganizar) os gráficos" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Habilita o arraste de gráficos" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Taxa de atualização" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Colunas do gráfico" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Organização de gráficos" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"A organização dos gráficos é armazenada no armazenamento local dos " -"navegadores. Você pode exportá-la, se você tiver uma configuração complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Resetar para o padrão" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12045,9 +12049,8 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Por favor, crie a pasta [em]config[/em] com permissão de escrita no servidor " -"web, no diretório raiz do phpMyAdmin conforme descrito na " -"[doc@setup_script]documentação[/doc]. Caso contrário, você somente poderá " -"baixá-la ou exibi-la." +"web, no diretório raiz do phpMyAdmin conforme descrito na [doc@setup_script]" +"documentação[/doc]. Caso contrário, você somente poderá baixá-la ou exibi-la." #: setup/frames/index.inc.php:60 msgid "" @@ -12313,14 +12316,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Você [kbd]configurou[/kbd] o tipo de autenticação e incluiu o usuário e " "senha para auto-login, o que não é uma opção desejável para live hosts. " "Qualquer um que souber ou descobrir sua URL do phpMyAdmin pode ter acesso " -"direto ao painel de controle. Configure o %stipo de autenticação%s para " -"[kbd]cookie[/kbd] ou [kbd]http[/kbd]." +"direto ao painel de controle. Configure o %stipo de autenticação%s para [kbd]" +"cookie[/kbd] ou [kbd]http[/kbd]." #: setup/lib/index.lib.php:318 #, php-format @@ -12364,24 +12367,24 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais." msgid "Wrong data" msgstr "Dados incorretos" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usando marcador \"%s\" como query padrão de navegação." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Marcador não criado" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12390,19 +12393,11 @@ msgstr "" "A tabela %s não contém uma coluna única. As opções edição em grade, " "checkbox, Editar, Copiar e Apagar não estão disponíveis." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com os índices da tabela `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Marcar essa consulta SQL" - -#: sql.php:1191 -msgid "Label:" -msgstr "Rótulo:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Sem dados para mostrar" @@ -12608,31 +12603,31 @@ msgstr "Marque a coluna para exibir:" msgid "No column selected." msgstr "Nenhuma coluna selecionada." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Relatório de rastreamento para tabela `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versão %1$s foi criada, rastreamento para %2$s está ativado(a)." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Rastreamento para %1$s foi desativado na versão %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Rastreamento para %1$s foi ativado na versão %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instruções SQL executadas." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12640,113 +12635,113 @@ msgstr "" "Você pode executar o dump criando e usando uma tabela temporária. Favor " "certificar-se de ter os privilégios necessários." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comente estas duas linhas se você não precisa delas." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instruções SQL exportadas. Por favor, copie a saída ou execute-as." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantâneo (código SQL) da versão %s" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Definição de dados de rastreamento removidos com sucesso" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulação de dados de rastreamento removida com sucesso" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Rastreando instruções" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s com datas desde %2$s até %3$s pelo usuário %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Excluir dados de rastreamento desta coluna do relatório" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nenhum dado" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instrução de definição de dados" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instrução de manipulação de dados" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Despejar SQL (download de arquivo)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Despejar SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Esta opção irá substituir sua tabela e os dados nela contidos." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Execução SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Exibir versões" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desativar rastreamento para %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desativar agora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Ativar rastreamento para %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ativar agora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Criar versão %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Rastrear essas instruções de definição de dados:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Rastrear essas instruções de manipulação de dados:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Criar versão" @@ -13150,8 +13145,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "A relação entre a memória livre do cache de consultas e o tamanho total do " "cache de consultas é de %s%%. Deveria ser maior do que 80%%" @@ -13306,8 +13301,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todas as ordenações criam tabelas temporárias, este valor deveria " "ser menor do que 10%%." @@ -13478,8 +13473,8 @@ msgstr "" #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "" -"Os valores atuais de tmp_table_size são de: %s e de max_heap_table_size de: " -"%s" +"Os valores atuais de tmp_table_size são de: %s e de max_heap_table_size de: %" +"s" #: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" @@ -14081,6 +14076,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está com valor 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeçalho a cada %s linhas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14368,13 +14366,13 @@ msgstr "concurrent_insert está com valor 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Ao definir este [kbd]aninhamento[/kbd], o alias da tabela é apenas usado " -#~ "para dividir/aninhar as tabelas de acordo com a " -#~ "$cfg['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo " +#~ "para dividir/aninhar as tabelas de acordo com a $cfg" +#~ "['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo " #~ "alias, o nome da tabela continua inalterado" #~ msgid "Display table comment instead of its name" diff --git a/po/ro.po b/po/ro.po index 088497b4e6..af2bf52d36 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-04-03 09:45+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Romanian \n" -"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" "X-Generator: Weblate 1.5-dev\n" @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Caută" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Caută" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Execută" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nume cheie" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descriere" @@ -110,7 +110,7 @@ msgstr "" "Fișierul %s nu este disponibil pe acest sistem, vă rugam să vizitați www." "phpmyadmin.net pentru mai multe informații." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." @@ -140,7 +140,7 @@ msgstr "Comentarii tabel" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Coloană" @@ -163,7 +163,7 @@ msgstr "Coloană" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tip" @@ -180,7 +180,7 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nul" @@ -195,7 +195,7 @@ msgstr "Nul" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Setare de bază" @@ -237,9 +237,9 @@ msgstr "Comentarii" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nu" @@ -264,9 +264,9 @@ msgstr "Nu" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Da" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -401,7 +401,7 @@ msgstr "Tabele monitoriyate" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Bază de date" @@ -409,17 +409,17 @@ msgstr "Bază de date" msgid "Last version" msgstr "Ultima versiune" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Creat(ă)" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Actualizat(ă)" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stare" @@ -432,7 +432,7 @@ msgstr "Stare" msgid "Action" msgstr "Acțiune" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Afișează" @@ -449,11 +449,11 @@ msgstr "Șterge datele urmărite din acest tabel" msgid "Drop" msgstr "Aruncă" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "activ(ă)" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 #, fuzzy msgid "not active" msgstr "inactiv(ă)" @@ -462,11 +462,11 @@ msgstr "inactiv(ă)" msgid "Versions" msgstr "Versiuni" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Raport de monitorizare" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Instantaneu al structurii" @@ -627,11 +627,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " -"%sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" +"sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -678,7 +678,7 @@ msgstr "" "Nu au putut fi încărcate modulele adiționale de import, vă rog verificați " "instalarea!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" @@ -700,7 +700,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -926,7 +926,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." @@ -936,7 +936,7 @@ msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." msgid "Do you really want to execute \"%s\"?" msgstr "Sigur doriți să " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Sunteți pe cale să DISTRUGEȚI o întreagă bază de date!" @@ -1028,8 +1028,8 @@ msgstr "Reîncărcarea drepturilor" msgid "Removing Selected Users" msgstr "Eliminarea utilizatorilor selectați" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Închide" @@ -1168,13 +1168,13 @@ msgstr "octeți" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiO" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiO" @@ -1216,7 +1216,7 @@ msgid "Traffic" msgstr "Trafic" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1242,13 +1242,14 @@ msgstr "Aliniere la grilă" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nici unul(a)" @@ -1349,7 +1350,7 @@ msgstr "Modificați setările" msgid "Current settings" msgstr "Setările curente" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1447,7 +1448,7 @@ msgstr "Explică SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Timp" @@ -1556,7 +1557,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" @@ -1621,7 +1622,7 @@ msgid "Cancel" msgstr "Renunță" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "încărcare" @@ -1781,7 +1782,7 @@ msgstr "Ascunde casuță interogare" msgid "Show query box" msgstr "Afișează casuță interogare" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1794,7 +1795,7 @@ msgstr "Editare" msgid "No rows selected" msgstr "Niciun rând selectat" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1886,7 +1887,7 @@ msgstr "Mărime pointer date" msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Copiază" @@ -1904,7 +1905,7 @@ msgstr "Linii terminate de" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrie" @@ -2425,33 +2426,33 @@ msgstr "pe oră" msgid "per day" msgstr "pe zi" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Fișierul de configurare existent (%s) nu poate fi citit." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisiuni greșite asupra fișierului de configurare, acesta nu ar trebui să " "aibă permisiuni de scriere pentru oricine!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Dimensiune font" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Crescătoare" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2612,14 +2613,14 @@ msgstr "Navigare" msgid "Delete the matches for the %s table?" msgstr "Ștergeți potrivirile pentru tabelul %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Șterge" @@ -2721,17 +2722,11 @@ msgstr "orizontal (colontitlu rotativ)" msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Capete de tabel la fiecare %s rânduri" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sortare după cheie" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2758,97 +2753,97 @@ msgstr "Sortare după cheie" msgid "Options" msgstr "Opțiuni" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Texte parțiale" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Texte întregi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Cheie relațională" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Afişează conţinut binar" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Afişează conţinut BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Afișează conținutul binar ca HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Ascunde transformarea browser-ului" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Text Bine Cunoscut" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 #, fuzzy msgid "Well Known Binary" msgstr "Binar Bine Cunoscut" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Oprește" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "în interogarea" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2857,8 +2852,8 @@ msgstr "comanda a durat %01.4f sec" msgid "With selected:" msgstr "Cele bifate:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2869,48 +2864,48 @@ msgstr "Cele bifate:" msgid "Check All" msgstr "Marchează toate" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportă" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Creare relație" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Vizualizare imprimare" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Legatură nevalidă" @@ -2991,38 +2986,38 @@ msgstr "Index nu este definit!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexuri" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unic" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalitate" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Interclasare" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentariu" @@ -3062,7 +3057,7 @@ msgstr "Vizualizare" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structură" @@ -3211,15 +3206,15 @@ msgstr[2] "%1$d rânduri inserate." msgid "Error while creating PDF:" msgstr "Eroare la creare PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nu s-a putut salva tabelul recent" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabele recente" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nu sunt tabele recente" @@ -3471,7 +3466,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" @@ -3577,14 +3572,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3829,7 +3824,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3893,7 +3888,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motoare" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Creare profil" @@ -4394,8 +4389,8 @@ msgstr "Editare coloane CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4970,9 +4965,8 @@ msgstr "Titluri de pagini" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Specificaţi textul din bara de titlu a browser-ului. Consultaţi " "[doc@cfg_TitleTable] documentaţia [/doc] pentru siruri de caractere magice " @@ -5820,9 +5814,9 @@ msgid "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -"Calea către fișierul de configurare pentru [a@http://swekey." -"com]autentificarea hardware SweKey [/a] (ce nu se află în rădăcină; " -"sugestie: /etc/swekey.conf)" +"Calea către fișierul de configurare pentru [a@http://swekey.com]" +"autentificarea hardware SweKey [/a] (ce nu se află în rădăcină; sugestie: /" +"etc/swekey.conf)" #: libraries/config/messages.inc.php:373 msgid "SweKey config file" @@ -5855,11 +5849,11 @@ msgstr "Tabelul de bookmark-uri" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Lăsați necompletat dacă nu doriți comentarii pentru coloane/mime types, " "sugestie: [kbd]pma_column_info[/kbd]" @@ -5949,8 +5943,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Lăsați necompletat dacă nu doriți suport pentru Designeri, sugestie: " -"[kbd]pma_designer_coords[/kbd]" +"Lăsați necompletat dacă nu doriți suport pentru Designeri, sugestie: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5961,9 +5955,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Mai multe informații pe [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL " -"Bugs[/a]" +"Mai multe informații pe [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5990,8 +5983,8 @@ msgstr "Ascunde baze de date" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -6072,8 +6065,8 @@ msgstr "Parola pentru „config auth”" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: " -"[kbd]pma_pdf_pages[/kbd]" +"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 #, fuzzy @@ -6088,8 +6081,8 @@ msgid "" msgstr "" "Bază de date folosită pentru relații, bookmarks și proprietăți PDF. Vedeți " "[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] pentru informații " -"complete. Lăsați necompletat dacă nu doriți suport. Sugestie: " -"[kbd]phpmyadmin[/kbd]" +"complete. Lăsați necompletat dacă nu doriți suport. Sugestie: [kbd]phpmyadmin" +"[/kbd]" #: libraries/config/messages.inc.php:415 #, fuzzy @@ -6127,8 +6120,8 @@ msgstr "Tabel folosit recent" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Lăsați necompletat dacă nu doriți suport [a@http://wiki.phpmyadmin.net/pma/" "relation]relation-links[/a], sugestie: [kbd]pma_relation[/kbd]" @@ -6149,11 +6142,11 @@ msgstr "comanda SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Vezi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] pentru un exemplu" +"Vezi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] pentru un exemplu" #: libraries/config/messages.inc.php:425 #, fuzzy @@ -6189,8 +6182,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: " -"[kbd]pma_table_coords[/kbd]" +"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6224,8 +6217,8 @@ msgid "" "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" "Lăsați necompletat dacă nu doriți suport \"persistent\" pentru preferințele " -"Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: " -"[kbd]pma_table_uiprefs[/kbd]" +"Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: [kbd]" +"pma_table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -6280,11 +6273,11 @@ msgstr "Declarații de urmărit" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" +#| "Leave blank for no SQL query tracking support, suggested: [kbd]" +#| "pma_tracking[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Lăsați necompletat dacă nu doriți suport pentru urmărirea interogărilor SQL, " "sugestie: [kbd]pma_tracking[/kbd]" @@ -6311,11 +6304,11 @@ msgstr "Regim de recuperare automată" #: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" +#| "Leave blank for no user preferences storage in database, suggested: [kbd]" +#| "pma_userconfig[/kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în " "baza de date, sugestie: [kbd]pma_userconfig[/kbd]" @@ -6344,8 +6337,8 @@ msgstr "Numele \"verbose\" al acestui server" #: libraries/config/messages.inc.php:455 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -"Dacă unui utilizator să i se afișeze un buton "arata-le pe " -"toate(randurile"" +"Dacă unui utilizator să i se afișeze un buton "arata-le pe toate" +"(randurile"" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" @@ -6535,11 +6528,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Dacă aveți un nume de utilizator, specificați-l aici ( default este " -"[kbd]anonymous[/kbd] )" +"Dacă aveți un nume de utilizator, specificați-l aici ( default este [kbd]" +"anonymous[/kbd] )" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Nume utilizator:" @@ -6705,8 +6698,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Activați compresia în format [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] pentru operațiile de import și export" +"Activați compresia în format [a@http://en.wikipedia.org/wiki/ZIP_" +"(file_format)]ZIP[/a] pentru operațiile de import și export" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -6973,7 +6966,7 @@ msgstr "Bază(e) de date:" msgid "Table(s):" msgstr "Tabelă(e):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rânduri:" @@ -7024,17 +7017,17 @@ msgstr ", @TABLE@ va deveni numele tabelei" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Această valoare este interpretată folosind %1$sstrftime%2$s, ca sa puteţi " "folosi şiruri de formatare a timpului. În plus, următoarele transformări vor " -"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ" -"%5$s pentru detalii." +"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ%5" +"$s pentru detalii." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7605,8 +7598,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7624,7 +7617,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." @@ -7752,11 +7745,11 @@ msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" @@ -7811,7 +7804,7 @@ msgstr "Înlocuiește prefixul tabelei" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8168,17 +8161,17 @@ msgid "Drop the database (DROP)" msgstr "Ștergeți baza de date (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Numai structura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structura și date" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Numai date" @@ -8347,8 +8340,8 @@ msgstr "Bine ați venit la %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -8632,7 +8625,7 @@ msgstr "Pune numele coloanelor în primul rând" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8640,7 +8633,7 @@ msgstr "Gazda" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8658,7 +8651,7 @@ msgstr "Versiune PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9257,9 +9250,9 @@ msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -"Asigurați-vă că aveți un id al server-ului unic în fișierul de " -"configurare(my.cnf). Dacă nu, vă rugăm să adăugați următoarea linie în " -"secțiunea [mysqld]:" +"Asigurați-vă că aveți un id al server-ului unic în fișierul de configurare" +"(my.cnf). Dacă nu, vă rugăm să adăugați următoarea linie în secțiunea " +"[mysqld]:" #: libraries/replication_gui.lib.php:60 libraries/replication_gui.lib.php:273 #: libraries/server_privileges.lib.php:1024 @@ -9871,7 +9864,7 @@ msgstr "Proprietăți" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -10046,7 +10039,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Persană" @@ -10529,8 +10522,8 @@ msgstr "Descriere utilizator" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " @@ -10545,61 +10538,286 @@ msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "pe secundă" +msgstr[1] "pe secundă" +msgstr[2] "pe secundă" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "în folosință" +msgstr[1] "în folosință" +msgstr[2] "în folosință" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statisticile rîndului" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Perioada selectată:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Tip interogare" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +#| msgid "Introduction" +msgid "Monitor Instructions" +msgstr "Introducere" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "Adaugă %s cîmp(uri)" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Redenumire bază de date în" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Selectează tabele" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Denumire de tabel nevalidă" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Adaugă un server nou" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "Comanda SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Dum" + +#: libraries/server_status_monitor.lib.php:294 +#, fuzzy +#| msgid "Introduction" +msgid "Instructions/Setup" +msgstr "Introducere" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +# Activați evidențierea +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Activați highlighting-ul" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Reîncarcă" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Adaugă/șterge coloane" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Rezultat SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generat de" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Fișiere cu date" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Începutul" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Timp" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Închide" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Timp" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Pune semn de carte la această comandă SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etichetă" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10621,10 +10839,6 @@ msgstr "Calendar" msgid "Bookmark this SQL query:" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Înlocuiește semnul de carte cu același nume" @@ -10762,7 +10976,7 @@ msgstr "Verificare depășit" msgid "Sort" msgstr "Sortare" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10932,7 +11146,7 @@ msgstr "Efectiv" msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -11107,7 +11321,7 @@ msgstr "Eroare în arhiva ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" @@ -11165,7 +11379,7 @@ msgstr "Comutare mare/mică" msgid "Toggle relation lines" msgstr "Pentru a alege relația, faceți clic:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -11230,51 +11444,51 @@ msgstr "Agregat" msgid "Active options" msgstr "Opțiuni tabel" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Pagina a fost creată" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Pagina nu a putut fi creată" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Pagină" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Import fișiere" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Creează un nou index" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nume utilizator" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomandat" @@ -11304,7 +11518,7 @@ msgstr "Relație internă adăugată" msgid "Relation deleted" msgstr "Relație ștearsă" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Eroare la salvarea coordonatelor pentru Designer." @@ -11745,216 +11959,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -#| msgid "Introduction" -msgid "Monitor Instructions" -msgstr "Introducere" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "Adaugă %s cîmp(uri)" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Redenumire bază de date în" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Selectează tabele" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Denumire de tabel nevalidă" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Adaugă un server nou" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "Comanda SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statisticile rîndului" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Perioada selectată:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Tip interogare" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "pe secundă" -msgstr[1] "pe secundă" -msgstr[2] "pe secundă" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "în folosință" -msgstr[1] "în folosință" -msgstr[2] "în folosință" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Dum" - -#: server_status_monitor.php:681 -#, fuzzy -#| msgid "Introduction" -msgid "Instructions/Setup" -msgstr "Introducere" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -# Activați evidențierea -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Activați highlighting-ul" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Reîncarcă" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Adaugă/șterge coloane" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12864,8 +12868,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12908,28 +12912,28 @@ msgstr "" msgid "Wrong data" msgstr "Nu sînt baze de date" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Semnul de carte %s a fost creat" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12942,21 +12946,11 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Pune semn de carte la această comandă SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etichetă" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13204,149 +13198,149 @@ msgstr "Selectează coloana pentru afișare" msgid "No column selected." msgstr "Niciun rând selectat" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitorizarea este activată" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitorizarea este activată" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy msgid "Delete tracking data row from report" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nu sînt baze de date" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Date" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Modul de export" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format msgid "Deactivate tracking for %s" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Creare relație" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Creare relație" @@ -13756,8 +13750,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Raportul curent dintre memoria cache liberă a interogărilor și memoria cache " "totală a interogărilor este %s%%. Ar trebui să fie peste 80%%" @@ -13928,8 +13922,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% din sortări au generat tabele temporare, această valoare ar trebui să " "fie mai mică de 10%%." @@ -14584,8 +14578,8 @@ msgid "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">this blog entry" msgstr "" -"De obicei, este suficientă setarea propietății {innodb_log_file_size} la " -"25%% din mărimea lui {innodb_buffer_pool_size}. O valoare foarte mare pentru " +"De obicei, este suficientă setarea propietății {innodb_log_file_size} la 25%" +"% din mărimea lui {innodb_buffer_pool_size}. O valoare foarte mare pentru " "{innodb_log_file_size} va încetini considerabil timpul de recuperare după o " "distrugere(eroare gravă) a unei baze de date. A se vedea de asemenea \n" "Language-Team: Russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: ru\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Поиск:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "Поиск:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Имя индекса" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Описание" @@ -108,7 +108,7 @@ msgstr "" "Файл %s не найден. Вся дополнительная информация находится на сайте www." "phpmyadmin.net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." @@ -136,7 +136,7 @@ msgstr "Комментарии к таблице:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Столбец" @@ -159,7 +159,7 @@ msgstr "Столбец" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тип" @@ -176,7 +176,7 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -191,7 +191,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "По умолчанию" @@ -233,9 +233,9 @@ msgstr "Комментарии" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Нет" @@ -260,9 +260,9 @@ msgstr "Нет" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Да" @@ -314,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Таблица" @@ -392,7 +392,7 @@ msgstr "Отслеживаемые таблицы" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "База данных" @@ -400,17 +400,17 @@ msgstr "База данных" msgid "Last version" msgstr "Последняя версия" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Создан" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Обновлён" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Состояние" @@ -423,7 +423,7 @@ msgstr "Состояние" msgid "Action" msgstr "Действие" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Показать" @@ -439,11 +439,11 @@ msgstr "Удалить данные слежения за таблицей" msgid "Drop" msgstr "Удалить" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "включено" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "выключено" @@ -451,11 +451,11 @@ msgstr "выключено" msgid "Versions" msgstr "Версии" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Отчёт слежения" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Обзор структуры" @@ -603,8 +603,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -654,7 +654,7 @@ msgstr "" "Отсутствуют модули импорта. Проверьте содержимое установленной копии " "phpMyAdmin!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" @@ -682,7 +682,7 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php-сценариев." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -893,7 +893,7 @@ msgstr "" "Сервер использует защитную систему Suhosin. Для решения возможных проблем " "обратитесь к %sдокументации%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." @@ -902,7 +902,7 @@ msgstr "Команда \"DROP DATABASE\" (удалить базу данных) msgid "Do you really want to execute \"%s\"?" msgstr "Вы действительно хотите выполнить запрос \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" @@ -986,8 +986,8 @@ msgstr "Перезагрузка привилегий" msgid "Removing Selected Users" msgstr "Удаление выбранных пользователей" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Закрыть" @@ -1114,13 +1114,13 @@ msgstr "Байт" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1159,7 +1159,7 @@ msgid "Traffic" msgstr "Трафик" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Настройки" @@ -1179,13 +1179,14 @@ msgstr "Добавить график к сетке" msgid "Please add at least one variable to the series" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Нет" @@ -1286,7 +1287,7 @@ msgstr "Изменить настройки" msgid "Current settings" msgstr "Текущие настройки" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Заголовок графика" @@ -1375,7 +1376,7 @@ msgstr "Анализ результатов" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Время" @@ -1472,7 +1473,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1529,7 +1530,7 @@ msgid "Cancel" msgstr "Отмена" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Загрузка" @@ -1678,7 +1679,7 @@ msgstr "Скрыть поле запроса" msgid "Show query box" msgstr "Отобразить поле запроса" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1691,7 +1692,7 @@ msgstr "Изменить" msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1775,7 +1776,7 @@ msgstr "Содержание точки данных" msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Копировать" @@ -1791,7 +1792,7 @@ msgstr "Линия" msgid "Polygon" msgstr "Многоугольник" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Геометрия" @@ -2261,8 +2262,8 @@ msgstr "Неожиданные символы на строке %s" #| msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден " -"\"%2$s\"" +"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден \"%2" +"$s\"" #: libraries/Advisor.class.php:467 msgid "per second" @@ -2281,33 +2282,33 @@ msgstr "в час" msgid "per day" msgstr "на день" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Невозможно прочесть существующий конфигурационный файл (%s)." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "На конфигурационный файл выставлены неверные права разрешающие запись для " "всех!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Размер шрифта" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "По возрастанию" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2450,14 +2451,14 @@ msgstr "Обзор" msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Удалить" @@ -2544,16 +2545,11 @@ msgstr "горизонтальном (повернутые заголовки)" msgid "vertical" msgstr "вертикальном" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Заголовки каждые %s строк" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Сортировать по индексу" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2580,91 +2576,91 @@ msgstr "Сортировать по индексу" msgid "Options" msgstr "Параметры" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Сокращенные тексты" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Полные тексты" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Ссылочный ключ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Отображение связанного поля" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Показать бинарные данные" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Скрыть преобразование" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Текст (WKT)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Бинарный (WKB)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Завершить" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Может быть приблизительно. Смотрите [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "по запросу" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "всего" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Запрос занял %01.4f сек." -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2673,8 +2669,8 @@ msgstr "Запрос занял %01.4f сек." msgid "With selected:" msgstr "С отмеченными:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2685,45 +2681,45 @@ msgstr "С отмеченными:" msgid "Check All" msgstr "Отметить все" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Создать представление" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Версия для печати" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Отобразить график" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Визуализация GIS данных" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Связь не найдена" @@ -2806,38 +2802,38 @@ msgstr "Индекс не определен!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индексы" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Упакован" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Уникальных элементов" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Сравнение" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Комментарий" @@ -2877,7 +2873,7 @@ msgstr "Представление" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3025,15 +3021,15 @@ msgstr[2] "Добавлено %1$d строк." msgid "Error while creating PDF:" msgstr "Ошибка при создании PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Не удалось сохранить последнюю таблицу" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Недавние таблицы" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Отсутствуют недавние таблицы" @@ -3274,7 +3270,7 @@ msgid "Maximum rows to plot" msgstr "Максимальное количество строк для построения" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Обзор внешних значений" @@ -3372,8 +3368,8 @@ msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -"Восьми-байтовое целое число, диапазон чисел со знаком от " -"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " +"Восьми-байтовое целое число, диапазон чисел со знаком от -" +"9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " "знака от 0 до 18,446,744,073,709,551,615" #: libraries/Types.class.php:306 libraries/Types.class.php:713 @@ -3387,20 +3383,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до " -"-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" +"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до -" +"1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Число с плавающей точкой удвоенной точности, допустимые значения от " -"-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " +"Число с плавающей точкой удвоенной точности, допустимые значения от -" +"1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " "2.2250738585072014E-308 до 1.7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3447,8 +3443,8 @@ msgid "" "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" "Временная метка, диапазон от \"1970-01-01 00:00:01\" UTC до \"2038-01-09 " -"03:14:07\" UTC, содержит количество секунд прошедших со времени " -"(\"1970-01-01 00:00:00\" UTC)" +"03:14:07\" UTC, содержит количество секунд прошедших со времени (\"1970-01-" +"01 00:00:00\" UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:729 #, php-format @@ -3681,7 +3677,7 @@ msgstr "Перечисление, выбор из списка определе msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL запрос:" @@ -3740,7 +3736,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Быстрая правка" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профилирование" @@ -4220,11 +4216,11 @@ msgstr "Редактирование полей типа CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" -"Использовать визуальный редактор SQL запросов ([a@http://codemirror." -"net/]CodeMirror[/a]) с подсветкой синтаксиса и нумерацией строк" +"Использовать визуальный редактор SQL запросов ([a@http://codemirror.net/]" +"CodeMirror[/a]) с подсветкой синтаксиса и нумерацией строк" #: libraries/config/messages.inc.php:31 msgid "Enable CodeMirror" @@ -4763,9 +4759,8 @@ msgstr "Заголовки страниц" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Определите текст заголовка браузера. Для ввода особых значений используйте " "подставные строки, которые описаны в [doc@cfg_TitleTable]документации[/doc]." @@ -5566,9 +5561,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]закладок[/a] оставьте поле пустым, рекомендуется: " -"[kbd]pma__bookmark[/kbd]" +"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/bookmark]закладок" +"[/a] оставьте поле пустым, рекомендуется: [kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5576,8 +5570,8 @@ msgstr "Таблица закладок" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым, " "рекомендуется: [kbd]pma__column_info[/kbd]" @@ -5758,8 +5752,8 @@ msgstr "Прописанный пароль" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: " -"[kbd]pma__pdf_pages[/kbd]" +"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5772,9 +5766,9 @@ msgid "" "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" "База данных используемая для расширенных функций: связей, закладок, и PDF. " -"Для более полной информации смотрите [a@http://wiki.phpmyadmin.net/pma/" -"pmadb]pmadb[/a]. Для отключения поддержки, оставьте поле пустым. " -"Рекомендуется: [kbd]phpmyadmin[/kbd]" +"Для более полной информации смотрите [a@http://wiki.phpmyadmin.net/pma/pmadb]" +"pmadb[/a]. Для отключения поддержки, оставьте поле пустым. Рекомендуется: " +"[kbd]phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:415 msgid "Database name" @@ -5804,12 +5798,12 @@ msgstr "Недавно использованная таблица" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/" -"relation]связанных таблиц[/a] оставьте поле пустым, рекомендуется: " -"[kbd]pma__relation[/kbd]" +"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/relation]" +"связанных таблиц[/a] оставьте поле пустым, рекомендуется: [kbd]pma__relation" +"[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5825,8 +5819,8 @@ msgstr "Команда SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]" @@ -5862,8 +5856,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: " -"[kbd]pma__table_coords[/kbd]" +"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5941,8 +5935,8 @@ msgstr "Слежение за выражениями" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Для отключения поддержки слежения за SQL запросами оставьте поле пустым, " "рекомендуется: [kbd]pma__tracking[/kbd]" @@ -5965,8 +5959,8 @@ msgstr "Автоматическое создание версий" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Для отключения возможности хранения пользовательских настроек в базе данных " "оставьте поле пустым, рекомендуется: [kbd]pma__userconfig[/kbd]" @@ -6092,8 +6086,8 @@ 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]" +"Вывести ссылку для отображения [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6178,8 +6172,8 @@ msgstr "" "При наличии выделенного имени пользователя, пропишите его здесь (изначально " "используется [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Пользователь" @@ -6602,7 +6596,7 @@ msgstr "База(ы) данных:" msgid "Table(s):" msgstr "Таблица(ы):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Строки:" @@ -6651,8 +6645,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -7206,8 +7200,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -7225,7 +7219,7 @@ msgid "No data found for GIS visualization." msgstr "Данные для визуализации GIS не найдены." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." @@ -7343,11 +7337,11 @@ msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -7398,7 +7392,7 @@ msgstr "Добавить префикс таблицы" msgid "Add prefix" msgstr "Добавить префикс" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Вы действительно хотите выполнить данный запрос?" @@ -7726,17 +7720,17 @@ msgid "Drop the database (DROP)" msgstr "Удалить базу данных (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Только структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структура и данные" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Только данные" @@ -7897,8 +7891,8 @@ msgstr "Добро пожаловать в %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -8147,13 +8141,13 @@ msgstr "Поместить названия полей в первой стро #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Хост:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Время создания:" @@ -8167,7 +8161,7 @@ msgstr "Версия PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "База данных:" @@ -9296,7 +9290,7 @@ msgstr "Атрибуты" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Дополнительно" @@ -9459,7 +9453,7 @@ msgid "Library" msgstr "Библиотека" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версия" @@ -9924,8 +9918,8 @@ msgstr "Обзор учетных записей" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " @@ -9940,61 +9934,284 @@ msgstr "Выделенный пользователь не был найден msgid "You have added a new user." msgstr "Был добавлен новый пользователь." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d секунда" +msgstr[1] "%d секунды" +msgstr[2] "%d секунд" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d минута" +msgstr[1] "%d минуты" +msgstr[2] "%d минут" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Статистика журналов" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Выбранный диапазон времени:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Выберите из какого журнала должна генерироваться статистика." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Результаты сгруппированы по тексту запроса." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Анализ запроса" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Инструкции мониторинга" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Мониторинг phpMyAdmin может помочь вам в оптимизации настройки сервера и " +"отслеживания долго выполняемых запросов. Для последнего, потребуется " +"установка log_output в 'TABLE' и включение директивы slow_query_log или " +"general_log. Будьте внимательны, включение general_log производит увеличение " +"хранимых данных и увеличивает нагрузку на сервер до 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"К сожалению, ваш сервер баз данных не поддерживает сохранение журналов в " +"таблицу, что требуется для анализа журналов базы данных с помощью " +"phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " +"Однако, вы все еще можете использовать функции графиков сервера." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Использование мониторинга:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Ваш браузер начнет обновление всех отображаемых графиков через определенный " +"интервал времени. Вы можете добавлять графики и менять частоту обновления в " +"настройках, или удалить график используя соответствующую иконку на каждом из " +"них." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Для отображения запросов из журналов, выберите подходящий период времени на " +"любом графике нажав левую кнопку мышки и выделив его. После подтверждения, " +"будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " +"любые выражения SELECT, для их последующего анализа." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Примечание:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Включение директивы general_log может увеличить загрузку сервера на 5-15%. " +"Также, имейте в виду, что генерирование статистики из журналов является " +"тяжелой, загружающей задачей для сервера, поэтому советуем выбирать только " +"небольшие промежутки времени, а так же отключать general_log и очищать его " +"таблицу, когда мониторинг больше не требуется." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Добавить график" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Заготовки графиков" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Переменные состояния" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Выберите серии:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Частый мониторинг" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "или задайте имя переменной:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Отобразить в виде значения разницы" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Применить делитель" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Добавить к значениям единицу измерения" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Добавить данные серии" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Очистить серии" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Серии в графике:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Запустить монитор" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Инструкции/Настройки" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Завершено редактирование графиков" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Включить подсветку" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Частота обновления" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Столбцы графика" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Расположение гарфика" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Расположения графиков сохраняются в локальном хранилище браузера. При " +"наличии сложной настройки, вы можете осуществить ее экспорт." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Восстановить изначальное значение" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Результат SQL-запроса" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Создан:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Размер возрастания файла данных" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Другое" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Начало" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Полное время:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Время" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Закрыть" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Время" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Создание закладки" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Метка:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Доступна для всех пользователей" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10013,10 +10230,6 @@ msgstr "Очистить" msgid "Bookmark this SQL query:" msgstr "Создание закладки SQL запроса:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Доступна для всех пользователей" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Заменить существующую с таким же именем" @@ -10155,7 +10368,7 @@ msgstr "Отметить требующие оптимизации" msgid "Sort" msgstr "Отсортировать" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Нет" @@ -10311,7 +10524,7 @@ msgstr "Эффективность" msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Ошибка запроса" @@ -10464,7 +10677,7 @@ msgstr "" "Неисправимая ошибка: Панель навигации может быть доступна только с помощью " "AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Изменения сохранены" @@ -10520,7 +10733,7 @@ msgstr "Обратное отображение" msgid "Toggle relation lines" msgstr "Переключение линий связи" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/экспорт координат таблиц в/из PDF-схемы" @@ -10578,39 +10791,39 @@ msgstr "Объединение" msgid "Active options" msgstr "Активные параметры" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Страница успешно создана" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Ошибка создания страницы" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Страница:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Импортировать с выбранной страницы" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Экспортировать на выбранную страницу" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Создать страницу и экспортировать в нее" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Название новой страницы: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Экспорт/Импорт на шкалу:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "рекомендуемый" @@ -10638,7 +10851,7 @@ msgstr "Добавлена внутренняя связь" msgid "Relation deleted" msgstr "Связь удалена" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Ошибка сохранения координат." @@ -11087,216 +11300,6 @@ msgstr "" "к исходным настройкам, если не было замечено положительного улучшения в " "работе." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Инструкции мониторинга" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Мониторинг phpMyAdmin может помочь вам в оптимизации настройки сервера и " -"отслеживания долго выполняемых запросов. Для последнего, потребуется " -"установка log_output в 'TABLE' и включение директивы slow_query_log или " -"general_log. Будьте внимательны, включение general_log производит увеличение " -"хранимых данных и увеличивает нагрузку на сервер до 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"К сожалению, ваш сервер баз данных не поддерживает сохранение журналов в " -"таблицу, что требуется для анализа журналов базы данных с помощью " -"phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " -"Однако, вы все еще можете использовать функции графиков сервера." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Использование мониторинга:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Ваш браузер начнет обновление всех отображаемых графиков через определенный " -"интервал времени. Вы можете добавлять графики и менять частоту обновления в " -"настройках, или удалить график используя соответствующую иконку на каждом из " -"них." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Для отображения запросов из журналов, выберите подходящий период времени на " -"любом графике нажав левую кнопку мышки и выделив его. После подтверждения, " -"будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " -"любые выражения SELECT, для их последующего анализа." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Примечание:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Включение директивы general_log может увеличить загрузку сервера на 5-15%. " -"Также, имейте в виду, что генерирование статистики из журналов является " -"тяжелой, загружающей задачей для сервера, поэтому советуем выбирать только " -"небольшие промежутки времени, а так же отключать general_log и очищать его " -"таблицу, когда мониторинг больше не требуется." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Добавить график" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Заготовки графиков" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Переменные состояния" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Выберите серии:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Частый мониторинг" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "или задайте имя переменной:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Отобразить в виде значения разницы" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Применить делитель" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Добавить к значениям единицу измерения" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Добавить данные серии" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Очистить серии" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Серии в графике:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Статистика журналов" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Выбранный диапазон времени:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Выберите из какого журнала должна генерироваться статистика." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Результаты сгруппированы по тексту запроса." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Анализ запроса" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d секунда" -msgstr[1] "%d секунды" -msgstr[2] "%d секунд" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d минута" -msgstr[1] "%d минуты" -msgstr[2] "%d минут" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Запустить монитор" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Инструкции/Настройки" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Завершено редактирование графиков" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Включить подсветку" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Частота обновления" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Столбцы графика" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Расположение гарфика" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Расположения графиков сохраняются в локальном хранилище браузера. При " -"наличии сложной настройки, вы можете осуществить ее экспорт." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Восстановить изначальное значение" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12095,8 +12098,8 @@ msgid "" "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" -"Пожалуйста, создайте на сервере в корневой директории phpMyAdmin каталог " -"[em]config[/em] и установите у него разрешение на запись, как описано в " +"Пожалуйста, создайте на сервере в корневой директории phpMyAdmin каталог [em]" +"config[/em] и установите у него разрешение на запись, как описано в " "[doc@setup_script]документации[/doc]. В противном случае вы сможете только " "скачать, или просмотреть его." @@ -12115,8 +12118,8 @@ msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." msgstr "" -"Если ваш сервер настроен также и на приём HTTPS запросов, перейдите по [a@" -"%s]данной ссылке[/a] для использования безопасного соединения." +"Если ваш сервер настроен также и на приём HTTPS запросов, перейдите по [a@%s]" +"данной ссылке[/a] для использования безопасного соединения." #: setup/frames/index.inc.php:68 msgid "Insecure connection" @@ -12354,8 +12357,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - " -"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - %" +"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -12365,8 +12368,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Вы установили [kbd]config[/kbd] идентификацию и ввели имя пользователя с " "паролем для автоматического входа, что крайне не рекомендуется для рабочего " @@ -12421,24 +12424,24 @@ msgstr "Ключ должен содержать символы алфавита msgid "Wrong data" msgstr "Ошибочные данные" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Закладка не создана" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12450,19 +12453,11 @@ msgstr "" "Данная таблица не содержит уникального столбца. Изменение сетки, выставление " "галочки, редактирование, копирование и удаление не доступно." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Создание закладки" - -#: sql.php:1191 -msgid "Label:" -msgstr "Метка:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Данные не найдены" @@ -12668,31 +12663,31 @@ msgstr "Выбор отображаемого столбца:" msgid "No column selected." msgstr "Не выбран столбец." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Отчёт слежения для таблицы `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Версия %1$s создана, отслеживание %2$s включено." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Слежение за %1$s было выключено на версии %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Слежение за %1$s было включено на версии %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Выполненные SQL запросы." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12701,113 +12696,113 @@ msgstr "" "временную базу данных. Убедитесь, что у вас есть для этого достаточные " "привилегии." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Закомментируйте эти две строки, если они вам не нужны." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Данные слежения успешно удалены" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Данные слежения успешно удалены" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Отслеживаемые выражения" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Вывести %1$s с датой от %2$s до %3$s пользователя %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Удалить строку данных слежения за таблицей" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Нет данных" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Выражение определяющее структуру" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Выражение изменяющее данные" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Выгрузка SQL (файл)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Выгрузка SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Выполнение SQL запроса" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Экспортировать как %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Показать версии" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Выключить слежение за %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Выключить" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Включить слежение за %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Включить" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Создать версию %1$s из %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Отслеживать выражения определяющие структуру:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Отслеживать выражения изменяющие данные:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Создать версию" @@ -13216,8 +13211,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Текущее соотношение свободного кеша запросов по отношению к полному кешу " "запросов составляет %s%%. Значение должно быть выше 80%%" @@ -13374,8 +13369,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% сортировок вызывает создание временных таблиц, данное значение должно " "быть ниже 10%%." @@ -14152,6 +14147,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Заголовки каждые %s строк" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14447,13 +14445,13 @@ msgstr "concurrent_insert установлен в 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "При выборе [kbd]nested[/kbd], комментарий таблицы будет выведен только у " -#~ "корневого значения, разделенных указанной в директиве " -#~ "$cfg['LeftFrameTableSeparator'] строкой, таблиц" +#~ "корневого значения, разделенных указанной в директиве $cfg" +#~ "['LeftFrameTableSeparator'] строкой, таблиц" #~ msgid "Display table comment instead of its name" #~ msgstr "Комментарий таблицы вместо имени" diff --git a/po/si.po b/po/si.po index ed511365a7..7bfc000b9a 100644 --- a/po/si.po +++ b/po/si.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-11 14:58+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala \n" -"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: si\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "සෙවීම:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "සෙවීම:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "යන්න" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "යතුරු නම" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "විස්තරය" @@ -104,7 +104,7 @@ msgid "" "for more information." msgstr "%s ගොනුව මෙම පද්ධතියේ නොමැත. වැඩි විස්තර සඳහා www.phpmyadmin.net වෙත යන්න." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s දත්තගබඩාව සාදන ලදි." @@ -132,7 +132,7 @@ msgstr "වගු විස්තර:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "තීර" @@ -155,7 +155,7 @@ msgstr "තීර" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "වර්ගය" @@ -172,7 +172,7 @@ msgstr "වර්ගය" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -187,7 +187,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "පෙරනිමි" @@ -229,9 +229,9 @@ msgstr "විස්තරය" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "නැත" @@ -256,9 +256,9 @@ msgstr "නැත" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "ඔව්" @@ -310,7 +310,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "වගුව" @@ -386,7 +386,7 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "දත්තගබඩාව" @@ -394,17 +394,17 @@ msgstr "දත්තගබඩාව" msgid "Last version" msgstr "අවසන් අනුවාදය" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "සාදන ලදි" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "තත්වය" @@ -417,7 +417,7 @@ msgstr "තත්වය" msgid "Action" msgstr "ක්‍රියාව" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "පෙන්වන්න" @@ -433,11 +433,11 @@ msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත msgid "Drop" msgstr "හලන්න" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "සක්‍රිය" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "අක්‍රිය" @@ -445,12 +445,12 @@ msgstr "අක්‍රිය" msgid "Versions" msgstr "අනුවාද" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "අවධානය පිළිබඳ වාර්තාව" # සැණරුව = snapshot. Source: Glossary of Information Technology terms - ICTA -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "සැකිල්ලේ සැණරුව" @@ -597,8 +597,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "ඔබ උඩුගත කිරීමට උත්සාහ කල ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර " "%sලියකියවිලි%s බලන්න." @@ -631,8 +631,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "ආනයනය සඳහා දත්ත කිසිවක් නොලැබුණි. ගොනුව ආනයනය සඳහා යොමු නොකිරීම හෝ යොමු කල ගොනුවේ " -"විශාලත්වය PHP වින්‍යාසයන්හි අනුමත ප්‍රමාණයට වැඩ විශාල වීම මීට හේතු විය හැකිය. " -"[doc@faq1-16]FAQ 1.16[/doc] බලන්න." +"විශාලත්වය PHP වින්‍යාසයන්හි අනුමත ප්‍රමාණයට වැඩ විශාල වීම මීට හේතු විය හැකිය. [doc@faq1-16]" +"FAQ 1.16[/doc] බලන්න." #: import.php:447 msgid "" @@ -643,7 +643,7 @@ msgstr "අක්ෂර කට්ටල හැරවීම් පුස්තක msgid "Could not load import plugins, please check your installation!" msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" @@ -669,7 +669,7 @@ msgstr "" "කෙසේ නමුදු අවසන් වාරයේදී කිසිදු දත්තයක් ලබා ගත නොහැකි විය. මෙයින් අදහස් වන්නේ ඔබගේ php කාල " "සීමාව වැඩි කිරීමකින් තොරව phpMyAdmin හට මෙම ආනයනය සම්පූර්ණ කිරීමට හැකි නොවන බවය." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -877,7 +877,7 @@ msgstr "" "සේවාදායකය Suhosin සමග ක්‍රියාත්මකයි. මෙමගින් ඇති විය හැකි ගැටළු සම්බන්ධයෙන් %sලියකියවිලි%s " "බලන්න." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇත." @@ -886,7 +886,7 @@ msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇ msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" @@ -970,8 +970,8 @@ msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" msgid "Removing Selected Users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කෙරෙමින්" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "වසන්න" @@ -1094,13 +1094,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1139,7 +1139,7 @@ msgid "Traffic" msgstr "තදබදය" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "සිටුවම්" @@ -1159,13 +1159,14 @@ msgstr "ජාලකයට ප්‍රස්තාර එක් කරන්න msgid "Please add at least one variable to the series" msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙන් එක විචල්‍යයක්වත් ඇතුලත් කරන්න" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "කිසිවක් නැත" @@ -1265,7 +1266,7 @@ msgstr "සිටුවම් වෙනස් කිරීම" msgid "Current settings" msgstr "වර්තමාන සිටුවම්" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "ප්‍රස්තාර මාතෘකාව" @@ -1345,7 +1346,7 @@ msgstr "ප්‍රතිදානය පහදන්න" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "කාලය" @@ -1441,7 +1442,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" @@ -1498,7 +1499,7 @@ msgid "Cancel" msgstr "අවලංගු කරන්න" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "පූරණය කෙරෙමින්" @@ -1648,7 +1649,7 @@ msgstr "විමසුම් කවුළුව සඟවන්න" msgid "Show query box" msgstr "විමසුම් කවුළුව පෙන්වන්න" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1661,7 +1662,7 @@ msgstr "සංස්කරණය කරන්න" msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1743,7 +1744,7 @@ msgstr "ලක්ෂයට අදාල දත්ත" msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "පිටපත් කරන්න" @@ -1759,7 +1760,7 @@ msgstr "රේඛාව" msgid "Polygon" msgstr "බහු අස්‍රය" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "ජ්‍යාමිතිය" @@ -2237,31 +2238,31 @@ msgstr "පැයකට" msgid "per day" msgstr "දිනකට" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "වත්මන් වින්‍යාස ගොනුව (%s) කියවිය නොහැක." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "වින්‍යාස ගොනුව සඳහා වැරදි අවසර සිටුවා ඇත. සැමටම ඊට ලිවිය හැකි නොවිය යුතුය!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "ෆොන්ටයෙහි ප්‍රමාණය" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ආරෝහන" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2401,14 +2402,14 @@ msgstr "පිරික්සන්න" msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "ඉවත් කරන්න" @@ -2495,16 +2496,11 @@ msgstr "තිරස් (rotated headers)" msgid "vertical" msgstr "සිරස්" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "ශීර්ෂක, පේළි %s කට වරක්" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2531,90 +2527,90 @@ msgstr "යතුර අනුව තෝරන්න" msgid "Options" msgstr "විකල්ප" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "අර්ධ පෙළ" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "පූර්ණ පෙළ" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "සබැඳි යතුර" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "සබැඳි දර්ශන තීරය" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "ද්වීමය දත්ත පෙන්වන්න" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB දත්ත පෙන්වන්න" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "ද්වීමය දත්ත HEX ලෙස පෙන්වන්න" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "බ්‍රව්සර රූපාන්තරනය සඟවන්න" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "පේළිය ඉවත් කරන ලදි" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "නවතා දමන්න" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "සමහර විට ආසන්න වශයෙන්. [doc@faq3-11]FAQ 3.11[/doc] බලන්න" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "විමසුම තුල" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "පේළි පෙන්වමින්" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "මුළු එකතුව" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2623,8 +2619,8 @@ msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" msgid "With selected:" msgstr "තෝරාගත්:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2635,45 +2631,45 @@ msgstr "තෝරාගත්:" msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "අපනයනය" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "සබැඳිය හමු නොවිණි" @@ -2748,38 +2744,38 @@ msgstr "සුචියක් අර්ථදක්වා නැත!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "සූචියන්" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "අහුරන ලද" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "අනේකත්වය" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "පරිතුලනය" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "ටීකාව" @@ -2819,7 +2815,7 @@ msgstr "දසුන" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "සැකිල්ල" @@ -2964,15 +2960,15 @@ msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි." msgid "Error while creating PDF:" msgstr "PDF සැදීමේදී දෝෂ:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "මෑතදී භාවිතා කල වගු සුරැකීම අසමත් විය" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "මෑතදී භාවිතා කල වගු" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "මෑතදී භාවිතා කල වගු කිසිවක් නොමැත" @@ -3212,7 +3208,7 @@ msgid "Maximum rows to plot" msgstr "උපරිම තීර ගණන" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් පිරික්සන්න" @@ -3318,21 +3314,21 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "කුඩා දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -3.402823466E+38 සිට -1.175494351E-38, " "0, හා 1.175494351E-38 සිට 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට " -"-2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට " -"1.7976931348623157E+308" +"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට -" +"2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට 1.7976931348623157E" +"+308" #: libraries/Types.class.php:312 msgid "" @@ -3599,7 +3595,7 @@ msgstr "අර්ථදක්වන ලද අගයන් අඩංගු ල msgid "Max: %s%s" msgstr "උපරිම: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL විමසුම:" @@ -3658,7 +3654,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "පේළිගත" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4124,8 +4120,8 @@ msgstr "CHAR තීරු සංස්කරණය" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "විමසුම් සංස්කරණය සඳහා, පේළි අංක සහිත, වාක්‍ය වින්‍යාස ඉස්මතු කෙරෙන [a@http://codemirror." "net/]CodeMirror[/a] සංස්කාරකය භාවිතා කරන්න" @@ -4658,9 +4654,8 @@ msgstr "පිටු නාම" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "බව්සරයේ මාතෘකා පටියේ දැක්වෙන පෙළ සඳහන් කරයි. මේ සඳහා යොදාගත හැකි විශේෂ අගයන් ගෙනදෙන " "වචන දැනගැනීමට [doc@cfg_TitleTable]ලියකියවිලි[/doc] බලන්න." @@ -5433,8 +5428,8 @@ msgstr "පොත්සලකුණු ගොනුව" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__column_info[/" "kbd]" @@ -5546,8 +5541,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__history[/kbd]" +"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5606,8 +5601,8 @@ msgstr "config සත්‍යාපනය සඳහා මුරපදය" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__pdf_pages[/kbd]" +"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5649,8 +5644,8 @@ msgstr "මෑතදී භාවිතා වූ වගුව" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] " "විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]" @@ -5669,8 +5664,8 @@ msgstr "SHOW DATABASES විධානය" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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] බලන්න" @@ -5704,8 +5699,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__table_coords[/kbd]" +"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5716,8 +5711,8 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " -"[kbd]pma__table_info[/kbd]" +"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: [kbd]" +"pma__table_info[/kbd]" #: libraries/config/messages.inc.php:434 msgid "Display columns table" @@ -5779,8 +5774,8 @@ msgstr "අවධානය සක්‍රීය කල යුතු ප්‍ #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "SQL විමසුම් අවධානය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__tracking[/kbd]" @@ -5800,8 +5795,8 @@ msgstr "ස්වයංක්‍රියව අනුවාද සාදන් #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " "[kbd]pma__userconfig[/kbd]" @@ -5992,11 +5987,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන " -"[kbd]anonymous[/kbd] භාවිතා කෙරේ)" +"ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන [kbd]" +"anonymous[/kbd] භාවිතා කෙරේ)" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "භාවිත නාමය" @@ -6148,8 +6143,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"ආනයන අපනයන මෙහෙයුම් සඳහා [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] හැකිළීම යොදාගැනීම සක්‍රීය කරන්න" +"ආනයන අපනයන මෙහෙයුම් සඳහා [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" +"[/a] හැකිළීම යොදාගැනීම සක්‍රීය කරන්න" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -6394,7 +6389,7 @@ msgstr "දත්තගබඩා(ව):" msgid "Table(s):" msgstr "වගු(ව):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "පේළි:" @@ -6447,12 +6442,12 @@ msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්‍රතිස් #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -6949,8 +6944,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6966,7 +6961,7 @@ msgid "No data found for GIS visualization." msgstr "ජ්‍යාමිතික නිරූපණයට දත්ත කිසිවක් හමු නොවිණි." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." @@ -7082,11 +7077,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -7131,7 +7126,7 @@ msgstr "වගු නාම මූලයක් එක් කරන්න:" msgid "Add prefix" msgstr "නාම මූලයක් එක් කරන්න" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "පහත විමසුම ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" @@ -7458,17 +7453,17 @@ msgid "Drop the database (DROP)" msgstr "දත්තගබඩාව හලන්න. (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "සැකිල්ල පමණයි" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "දත්ත පමණයි" @@ -7632,8 +7627,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "ඔබ වින්‍යාස ගොනුවක් නොසෑදුවා විය යුතුය. වින්‍යාස ගොනුවක් සෑදීමට %1$sපිහිටුවීමේ විධානාවලිය%2$s " "භාවිතා කිරීම අවශ්‍ය විය හැකිය." @@ -7880,13 +7875,13 @@ msgstr "තීර නම් පළමු පේළියේ යොදන්න:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "දායකයා:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "උත්පාදන වේලාව:" @@ -7900,7 +7895,7 @@ msgstr "PHP අනුවාදය:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "දත්තගබඩාව:" @@ -8009,8 +8004,8 @@ msgid "" "(1,2,3)" msgstr "" "සියලුම INSERT ප්‍රකාශ වල තීර නම් ඇතුලත් කරන්න
    " -"  උදාහරණ: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " -"(1,2,3)" +"  උදාහරණ: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" +"" #: libraries/plugins/export/ExportSql.class.php:361 msgid "" @@ -8091,8 +8086,8 @@ msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" -"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ " -"ගැනේ)" +"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ ගැනේ)" +"" #: libraries/plugins/import/ImportCsv.class.php:72 msgid "" @@ -8993,7 +8988,7 @@ msgstr "ගුණාංග" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "අතිරේක" @@ -9154,7 +9149,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "අනුවාදය" @@ -9595,8 +9590,8 @@ msgstr "භාවිතා කරන්නන් පිළිබඳ දළ ව msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " @@ -9610,55 +9605,274 @@ msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍ msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "තත්පර %dක්" +msgstr[1] "තත්පර %dක්" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "මිනිත්තු %dක්" +msgstr[1] "මිනිත්තු %dක්" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "ලොග සංඛ්‍යලේඛන" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "තෝරාගත් කාල පරාසය:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්‍රකාශ පමණක් ලබාගන්න" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්‍රකාශ වල අඩංගු විචල්‍ය දත්ත ඉවත් කරන්න" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "සංඛ්‍යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "ප්‍රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "විමසුම් විශ්ලේශකය" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"ඔබගේ සේවාදායකයේ වින්‍යාසයන් ප්‍රශස්ත කිරීමටත් වැඩි කාලයක් ගතවන විමසුම් හඳුනා ගැනීමටත් ඔබට " +"phpMyAdmin අධීක්ෂකය යොදාගත හැක. දෙවැන්න සඳහා log_output හි අගය TABLE ලෙස සිටුවීමත් " +"slow_query_log, general_log යන දෙකෙන් එකක් සක්‍රීය කිරීමත් අවශ්‍ය වේ. කෙසේ වෙතත් " +"general_log ය ඉතා විශාල දත්ත ප්‍රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " +"15% දක්වා ඉහල යා හැකි බව සලකන්න" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"phpMyAdmin මඟින් දත්තගබඩා ලොගයන් විශ්ලේෂණය කිරීම සඳහා අත්‍යාවශ්‍ය අංගයක් වන වගුවක් තුලට දත්ත " +"ලොගගත කිරීමේ හැකියාව ඔබගේ දත්තගබඩා සේවාදායකයේ නොමැත. වගුවක් තුලට දත්ත ලොගගත කිරීම " +"MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්‍රස්ථාර විශේෂාංග " +"භාවිතා කල හැක." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "අධීක්ෂකය භාවිතා කිරීම:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"ඔබගේ බ්‍රව්සරය විසින් නියමිත කාලාන්තරයකට වරක් සියලුම ප්‍රස්ථාර යාවත්කාලීන කෙරෙනු ඇත. ඔබට " +"ප්‍රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්‍රස්ථාරය " +"මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්‍රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"ලොගයේ ඇතුලත් විමසුම් පරීක්ෂා කිරීම සඳහා ප්‍රස්තාරය මත වම් මූසික බොත්තම පහලට ඔබාගෙන තිරස් අතට " +"ඇදීමෙන් අදාල කාල පරාසය තෝරන්න. සනාත කිරීමකින් අනතුරුව සමූහනය කරන ලද විමසුම් ඇතුලත් වගුවක් " +"පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්‍රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " +"හැක." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "කරුණාවෙන් සලකන්න:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log සක්‍රීය කිරීම සේවාදායකය මත භාරය 5-15% අතර ප්‍රමාණයකින් වැඩි කරයි. එමෙන්ම " +"ලොගගත දත්ත මගින් සංඛ්‍යාලේඛන උත්පාදනය කිරීම අධික භාරයක් ගෙනදෙන කාර්යයක් බව සලකන්න. එම නිසා " +"මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්‍ය නොවන විට general_log " +"අක්‍රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "ප්‍රස්ථාර එක් කරන්න" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "පෙරසැදි ප්‍රස්ථාර" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "තත්ව විචල්‍ය(ය)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "ශ්‍රේණිය තෝරන්න:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "සාමාන්‍යයෙන් අධීක්ෂණය කරනු ලබන" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "හෝ විචල්‍ය නාමය යතුරු කරන්න:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "භාජකයක් භාවිතා කරන්න" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "මෙම ශ්‍රේණිය එක් කරන්න" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "ශ්‍රේණිය ඉවත් කරන්න" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "ප්‍රස්ථාරයේ ශ්‍රේණි:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "අධීක්ෂණය අරඹන්න" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "උපදෙස්/පිහිටුවීම" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "ප්‍රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "ඉස්මතු කිරීම සක්‍රීය කරන්න" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "ප්‍රස්ථාරයේ තීර" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "ප්‍රස්ථාර සැකසුම" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"ප්‍රස්ථාර සැකැස්ම බ්‍රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " +"කර ගැනීමට අවශ්‍ය විය හැකිය." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "පෙරනිමි අගයන් පිහිටුවන්න" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL ප්‍රතිළුල" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "උත්පාදනය කරන ලද්දේ:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "දත්ත ගොනු" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "අනෙකුත්" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "අරඹන්න" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "මුළු කාලය" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% කාලය" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "වසන්න" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø කාලය" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "ලේබලය:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9677,10 +9891,6 @@ msgstr "මකන්න" msgid "Bookmark this SQL query:" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "එකම නම ඇති පොත් සලකුණ ප්‍රතිස්ථාපනය කරන්න" @@ -9806,7 +10016,7 @@ msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා msgid "Sort" msgstr "සුබෙදන්න" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "කිසිවක් නැත" @@ -9960,7 +10170,7 @@ msgstr "එලදායී" msgid "Table %1$s has been altered successfully" msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "විමසුම් දෝෂය" @@ -10081,8 +10291,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " -"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" +"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:122 msgid "Could not save configuration" @@ -10107,7 +10317,7 @@ msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සුරකින ලදි" @@ -10163,7 +10373,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "සබඳතා දක්වන ඉරි පෙන්වන්න/සඟවන්න" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10222,41 +10432,41 @@ msgstr "එකතු කරන්න" msgid "Active options" msgstr "සක්‍රිය විකල්ප" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "පිටුව සාදන ලදි" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "පිටුව සෑදීම අසමත් විය" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "පිටුව:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "තෝරාගත් පිටු ආනයනය කරන්න" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "තෝරාගත් පිටු අපනයනය කරන්න" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "පිටුවක් සාදා අපනයනය කරන්න" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "නව පිටු නාමය: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export to selected page" msgid "Export/Import to scale:" msgstr "තෝරාගත් පිටු අපනයනය කරන්න" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10284,7 +10494,7 @@ msgstr "අභ්‍යන්තර සබඳතා එක් කරන ලද msgid "Relation deleted" msgstr "සම්බන්දතාවය ඉවත් කරන ලදී" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10716,212 +10926,6 @@ msgstr "" "දත්තගබඩාව නිරීක්ෂණය කිරීම හා පෙර අවස්ථා සමග සසැදීමත්, මැනිය හැකි වර්ධනයක් ගෙන නොදෙන වෙනස් " "කිරීම් ප්‍රතිවර්තනය කිරීමත් ය." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"ඔබගේ සේවාදායකයේ වින්‍යාසයන් ප්‍රශස්ත කිරීමටත් වැඩි කාලයක් ගතවන විමසුම් හඳුනා ගැනීමටත් ඔබට " -"phpMyAdmin අධීක්ෂකය යොදාගත හැක. දෙවැන්න සඳහා log_output හි අගය TABLE ලෙස සිටුවීමත් " -"slow_query_log, general_log යන දෙකෙන් එකක් සක්‍රීය කිරීමත් අවශ්‍ය වේ. කෙසේ වෙතත් " -"general_log ය ඉතා විශාල දත්ත ප්‍රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " -"15% දක්වා ඉහල යා හැකි බව සලකන්න" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"phpMyAdmin මඟින් දත්තගබඩා ලොගයන් විශ්ලේෂණය කිරීම සඳහා අත්‍යාවශ්‍ය අංගයක් වන වගුවක් තුලට දත්ත " -"ලොගගත කිරීමේ හැකියාව ඔබගේ දත්තගබඩා සේවාදායකයේ නොමැත. වගුවක් තුලට දත්ත ලොගගත කිරීම " -"MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්‍රස්ථාර විශේෂාංග " -"භාවිතා කල හැක." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "අධීක්ෂකය භාවිතා කිරීම:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"ඔබගේ බ්‍රව්සරය විසින් නියමිත කාලාන්තරයකට වරක් සියලුම ප්‍රස්ථාර යාවත්කාලීන කෙරෙනු ඇත. ඔබට " -"ප්‍රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්‍රස්ථාරය " -"මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්‍රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"ලොගයේ ඇතුලත් විමසුම් පරීක්ෂා කිරීම සඳහා ප්‍රස්තාරය මත වම් මූසික බොත්තම පහලට ඔබාගෙන තිරස් අතට " -"ඇදීමෙන් අදාල කාල පරාසය තෝරන්න. සනාත කිරීමකින් අනතුරුව සමූහනය කරන ලද විමසුම් ඇතුලත් වගුවක් " -"පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්‍රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " -"හැක." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "කරුණාවෙන් සලකන්න:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log සක්‍රීය කිරීම සේවාදායකය මත භාරය 5-15% අතර ප්‍රමාණයකින් වැඩි කරයි. එමෙන්ම " -"ලොගගත දත්ත මගින් සංඛ්‍යාලේඛන උත්පාදනය කිරීම අධික භාරයක් ගෙනදෙන කාර්යයක් බව සලකන්න. එම නිසා " -"මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්‍ය නොවන විට general_log " -"අක්‍රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "ප්‍රස්ථාර එක් කරන්න" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "පෙරසැදි ප්‍රස්ථාර" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "තත්ව විචල්‍ය(ය)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "ශ්‍රේණිය තෝරන්න:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "සාමාන්‍යයෙන් අධීක්ෂණය කරනු ලබන" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "හෝ විචල්‍ය නාමය යතුරු කරන්න:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "භාජකයක් භාවිතා කරන්න" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "මෙම ශ්‍රේණිය එක් කරන්න" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "ශ්‍රේණිය ඉවත් කරන්න" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "ප්‍රස්ථාරයේ ශ්‍රේණි:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "ලොග සංඛ්‍යලේඛන" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "තෝරාගත් කාල පරාසය:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්‍රකාශ පමණක් ලබාගන්න" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්‍රකාශ වල අඩංගු විචල්‍ය දත්ත ඉවත් කරන්න" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "සංඛ්‍යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "ප්‍රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "විමසුම් විශ්ලේශකය" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "තත්පර %dක්" -msgstr[1] "තත්පර %dක්" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "මිනිත්තු %dක්" -msgstr[1] "මිනිත්තු %dක්" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "අධීක්ෂණය අරඹන්න" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "උපදෙස්/පිහිටුවීම" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "ප්‍රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "ඉස්මතු කිරීම සක්‍රීය කරන්න" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "ප්‍රස්ථාරයේ තීර" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "ප්‍රස්ථාර සැකසුම" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"ප්‍රස්ථාර සැකැස්ම බ්‍රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " -"කර ගැනීමට අවශ්‍ය විය හැකිය." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "පෙරනිමි අගයන් පිහිටුවන්න" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11807,8 +11811,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "ඔබ [kbd]config[/kbd] සත්‍යාපනය තෝරා ස්වයංක්‍රීය ඇතුල්වීම සඳහා භාවිත නාමය සහ මුරපදය සඳහන් " "කර ඇත. සජීවී සත්කාරකයන් සඳහා මෙය නුසුදුසුය. ඔබගේ phpMyAdmin URLය දන්නා ඕනෑම අයෙකුට " @@ -11853,24 +11857,24 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] msgid "Wrong data" msgstr "වැරදි දත්ත" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "පොත් සලකුණ නොසාදන ලදි" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -11882,19 +11886,11 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" - -#: sql.php:1191 -msgid "Label:" -msgstr "ලේබලය:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "පෙන්වීම සඳහා දත්ත නොමැත" @@ -12104,143 +12100,143 @@ msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන් msgid "No column selected." msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s වන අනුවාදය සාදන ලදි. %2$s සඳහා අවධානය සක්‍රීයයි." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය අක්‍රීය කරන ලදී." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය සක්‍රීය කරන ලදී." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL ය ක්‍රියාත්මක කරන ලදි." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%1$s පෙන්වන්න, %2$s දින සිට %3$s දින දක්වා %4$s %5$s භාවිතා කරන්නා විසින්" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "අවධානය පිළිබඳ දත්ත පේළිය වාර්තාවෙන් ඉවත් කරන්න" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "දත්ත නොමැත" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "දිනය" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "දත්ත අර්ථ දැක්වීම" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්‍රතිස්ථාපනය කෙරෙනු ඇත." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL ක්‍රියාත්මක කිරීම" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "අපනයන කරන්න %s ලෙස" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "අනුවාද පෙන්වන්න" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s සඳහා අවධානය අක්‍රීය කරන්න" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "අක්‍රීය කරන්න" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s සඳහා අවධානය සක්‍රීය කරන්න" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "සක්‍රීය කරන්න" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s හි %1$s වන අනුවාදය සාදන්න" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "අනුවාදය සාදන්න" @@ -12591,8 +12587,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12712,8 +12708,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13431,6 +13427,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" +#~ msgid "Headers every %s rows" +#~ msgstr "ශීර්ෂක, පේළි %s කට වරක්" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -13714,13 +13713,13 @@ msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" -#~ "මෙය [kbd]nested[/kbd] වෙත සිටවූ විට, වගුවේ අන්වර්ථ නාමය යොදා ගැනෙනුයේ " -#~ "$cfg['LeftFrameTableSeparator'] අගය අනුව වගු වෙන්කිරීමට/කාණ්ඩගත කිරීමට පමණි. එම " -#~ "නිසා කාණ්ඩය පමණක් අන්වර්ථ නාමයෙන් හැඳින්වෙන අතර, වගු නාමයන් නොවෙනස්ව පවතී" +#~ "මෙය [kbd]nested[/kbd] වෙත සිටවූ විට, වගුවේ අන්වර්ථ නාමය යොදා ගැනෙනුයේ $cfg" +#~ "['LeftFrameTableSeparator'] අගය අනුව වගු වෙන්කිරීමට/කාණ්ඩගත කිරීමට පමණි. එම නිසා " +#~ "කාණ්ඩය පමණක් අන්වර්ථ නාමයෙන් හැඳින්වෙන අතර, වගු නාමයන් නොවෙනස්ව පවතී" #~ msgid "Display table comment instead of its name" #~ msgstr "වගුවේ නම වෙනුවට විස්තරය පෙන්වන්න" diff --git a/po/sk.po b/po/sk.po index 2014742e03..696d58151b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-11 16:36+0200\n" "Last-Translator: Peter Rosa \n" "Language-Team: Slovak \n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Hľadať" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Hľadať" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Vykonaj" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Kľúčový názov" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Popis" @@ -109,7 +109,7 @@ msgstr "" "Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na stránke " "www.phpmyadmin.net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." @@ -139,7 +139,7 @@ msgstr "Komentár k tabuľke" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Stĺpec" @@ -162,7 +162,7 @@ msgstr "Stĺpec" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -179,7 +179,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulový" @@ -194,7 +194,7 @@ msgstr "Nulový" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Predvolené" @@ -236,9 +236,9 @@ msgstr "Komentáre" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nie" @@ -263,9 +263,9 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Áno" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabuľka" @@ -400,7 +400,7 @@ msgstr "Sledované tabuľky" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databáza" @@ -408,17 +408,17 @@ msgstr "Databáza" msgid "Last version" msgstr "Posledná verzia" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Vytvorené" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Aktualizované" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stav" @@ -431,7 +431,7 @@ msgstr "Stav" msgid "Action" msgstr "Akcia" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Ukázať" @@ -447,11 +447,11 @@ msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" msgid "Drop" msgstr "Odstrániť" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "zapnuté" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "nie je zapnuté" @@ -459,11 +459,11 @@ msgstr "nie je zapnuté" msgid "Versions" msgstr "Verzia" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Informácie o monitorovanie" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snímok štruktúry" @@ -621,8 +621,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -671,7 +671,7 @@ msgstr "" "Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu " "inštaláciu!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" @@ -698,7 +698,7 @@ msgstr "" "že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený " "časový limit behu skriptu v php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -866,9 +866,9 @@ msgid "" msgstr "" "Nastavenie v php.ini [a@http://php.net/manual/en/session.configuration." "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] má nižšiu " -"hodnotu ako nastavenie životnosti cookie v phpMyAdmin " -"($cfg['LoginCookieValidity']). Kvôli tomu vaše prihlásenie vyprší skôr ako " -"je nastavené v konfigurácii phpMyAdmin." +"hodnotu ako nastavenie životnosti cookie v phpMyAdmin ($cfg" +"['LoginCookieValidity']). Kvôli tomu vaše prihlásenie vyprší skôr ako je " +"nastavené v konfigurácii phpMyAdmin." #: index.php:456 msgid "" @@ -924,10 +924,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Webový server beží so Suhosin-patchom. Možné dôsledky konzultujte s " -"%sdokumentáciou%s." +"Webový server beží so Suhosin-patchom. Možné dôsledky konzultujte s %" +"sdokumentáciou%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Príkaz \"DROP DATABASE\" je zakázaný." @@ -936,7 +936,7 @@ msgstr "Príkaz \"DROP DATABASE\" je zakázaný." msgid "Do you really want to execute \"%s\"?" msgstr "Skutočne chcete vykonať príkaz \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZMAZAŤ celú databázu!" @@ -1021,8 +1021,8 @@ msgstr "Načítavam oprávnenia" msgid "Removing Selected Users" msgstr "Odstránenie vybraných používateľov" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Zavrieť" @@ -1148,13 +1148,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1193,7 +1193,7 @@ msgid "Traffic" msgstr "Vyťaženie" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Nastavenia" @@ -1213,13 +1213,14 @@ msgstr "Pridať graf do mriežky" msgid "Please add at least one variable to the series" msgstr "Pridajte prosím aspoň jednu hodnotu do série" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Žiadny" @@ -1319,7 +1320,7 @@ msgstr "Zmeniť nastavenia" msgid "Current settings" msgstr "Aktuálne nastavenia" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Názov grafu" @@ -1408,7 +1409,7 @@ msgstr "Vysvetliť výstup" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Čas" @@ -1506,7 +1507,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1563,7 +1564,7 @@ msgid "Cancel" msgstr "Zrušiť" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Načítanie" @@ -1712,7 +1713,7 @@ msgstr "Skryť vyhľadávacie pole" msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1725,7 +1726,7 @@ msgstr "Upraviť" msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1807,7 +1808,7 @@ msgstr "Obsah datového bodu" msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopírovať" @@ -1823,7 +1824,7 @@ msgstr "Linka" msgid "Polygon" msgstr "Polygón" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometria" @@ -2300,33 +2301,33 @@ msgstr "za hodinu" msgid "per day" msgstr "za deň" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Existujúci konfiguračný súbor (%s) nie je čitateľný." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Konfiguračný súbor má zlé prístupové práva, nemal by byť zapisovateľný pre " "všetkých!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Veľkosť písma" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Vzostupne" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2482,14 +2483,14 @@ msgstr "Prechádzať" msgid "Delete the matches for the %s table?" msgstr "Odstrániť nájdené záznamy z tabuľky %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Zmazať" @@ -2580,16 +2581,11 @@ msgstr "vodorovnom (otočené hlavičky)" msgid "vertical" msgstr "vertikálnom" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Opakovať hlavičku každých %s riadkov" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Zoradiť podľa kľúča" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,90 +2612,90 @@ msgstr "Zoradiť podľa kľúča" msgid "Options" msgstr "Nastavenia" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Čiastočné texty" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Plné texty" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relačný kľúč" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relačné zobrazenie stĺpcov" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Zobraziť binárny obsah" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Zobraziť obsah BLOBu" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Zobraziť binárny obsah v HEX formáte" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Skryť transformácie prehliadača" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Text (Well Known Text)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Zabiť" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Môže byť nepresné. Viď [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "v dopyte" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Zobrazené riadky" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "celkovo" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2708,8 +2704,8 @@ msgstr "Dopyt zabral %01.4f s" msgid "With selected:" msgstr "Výber:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2720,45 +2716,45 @@ msgstr "Výber:" msgid "Check All" msgstr "Označiť všetko" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportovať" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Vytvoriť pohľad" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Náhľad k tlači" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Zobraziť GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Odkaz nebol nájdený" @@ -2837,38 +2833,38 @@ msgstr "Nebol definovaný žiadny index!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Zabalené" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Mohutnosť" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Zotriedenie" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentár" @@ -2910,7 +2906,7 @@ msgstr "Pohľad" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Štruktúra" @@ -3058,15 +3054,15 @@ msgstr[2] "Bolo vložených %1$d riadkov." msgid "Error while creating PDF:" msgstr "Chyba pri vytváraní PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nepodarilo sa uložiť najnovšíu tabuľku" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Nedávne tabuľky" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Neboli nájdené žiadne nedávne tabuľky" @@ -3310,7 +3306,7 @@ msgid "Maximum rows to plot" msgstr "Maximálny počet zobrazených riadkov" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" @@ -3421,20 +3417,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Číslo s plávajúcou desatinnou čiarkou, rozsahy: od -3,402823466E+38 do " -"-1,175494351E-38; 0; od 1,175494351E-38 do 3,402823466E+38" +"Číslo s plávajúcou desatinnou čiarkou, rozsahy: od -3,402823466E+38 do -" +"1,175494351E-38; 0; od 1,175494351E-38 do 3,402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Číslo s dvojitou presnosťou a plávajúcou desatinnou čiarkou, rozsah: od " -"-1,7976931348623157E+308 do -2,2250738585072014E-308; 0; od " +"Číslo s dvojitou presnosťou a plávajúcou desatinnou čiarkou, rozsah: od -" +"1,7976931348623157E+308 do -2,2250738585072014E-308; 0; od " "2,2250738585072014E-308 do 1,7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3710,7 +3706,7 @@ msgstr "Vymenovanie hodnôt vybratých zo zoznamu definovaných hodnôt" msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3771,7 +3767,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upraviť tu" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilovanie" @@ -4196,8 +4192,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Tajné heslo používané pre šifrovanie cookies pri prihlasovaní pomocou " -"[kbd]cookie[/kbd]" +"Tajné heslo používané pre šifrovanie cookies pri prihlasovaní pomocou [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4238,8 +4234,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Nastavte, ktorý typ ovládacích prvkov sa má použiť pri editácii polí typu " -"CHAR a VARCHAR; [kbd]vstup[/kbd] - umožňuje obmedziť dĺžku vstupu, " -"[kbd]textová oblasť[/kbd] - umožňuje použitie nových riadkov v poli" +"CHAR a VARCHAR; [kbd]vstup[/kbd] - umožňuje obmedziť dĺžku vstupu, [kbd]" +"textová oblasť[/kbd] - umožňuje použitie nových riadkov v poli" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4247,8 +4243,8 @@ msgstr "Úprava polí typu CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Použiť užívateľsky príjemný editor na úpravu SQL dozatazov ([a@http://" "codemirror.net/]CodeMirror[/a]) s číslovaním riadkov a zvýrazňovaním syntaxe" @@ -4794,13 +4790,12 @@ msgstr "Mená stránok" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Zadajte titulku, ktorú bude zobrazovať prehliadač. V " -"[doc@cfg_TitleTable]documentácii[/doc] nájdete špeciálne reťazce, ktoré " -"môžete použiť na získanie špeciálnych hodnôt." +"Zadajte titulku, ktorú bude zobrazovať prehliadač. V [doc@cfg_TitleTable]" +"documentácii[/doc] nájdete špeciálne reťazce, ktoré môžete použiť na " +"získanie špeciálnych hodnôt." #: libraries/config/messages.inc.php:192 #: libraries/navigation/NavigationHeader.class.php:204 @@ -4921,10 +4916,10 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Ak chcete používať službu SQL validátoru, mali by ste vedieť, že " -"[strong]všetky SQL príkazy sú anonymne ukladané pre štatistické účely[/" -"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " -"Copyright 2002 Upright Database Technology. All rights reserved.[/em]" +"Ak chcete používať službu SQL validátoru, mali by ste vedieť, že [strong]" +"všetky SQL príkazy sú anonymne ukladané pre štatistické účely[/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:220 msgid "Startup" @@ -5258,8 +5253,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -"Otvoriť nové okno v hlavnej okne ([kbd]hlavná[/kbd]) alebo v novom " -"([kbd]nové[/kbd])" +"Otvoriť nové okno v hlavnej okne ([kbd]hlavná[/kbd]) alebo v novom ([kbd]nové" +"[/kbd])" #: libraries/config/messages.inc.php:302 msgid "Logo link target" @@ -5598,11 +5593,11 @@ msgstr "Tabuľka záložiek" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Nechajte prázdne pre žiadne komentáre ci mime typy polí, navrhované: " -"[kbd]pma__column_info[/kbd]" +"Nechajte prázdne pre žiadne komentáre ci mime typy polí, navrhované: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5670,8 +5665,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Nechajte prázdne pre vypnutie návrhára, východzie nastavenie: " -"[kbd]pma__designer_coords[/kbd]" +"Nechajte prázdne pre vypnutie návrhára, východzie nastavenie: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5710,8 +5705,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Nechať prázdne pre vypnutie histórie SQL dopytov, navrhované: " -"[kbd]pma__history[/kbd]" +"Nechať prázdne pre vypnutie histórie SQL dopytov, navrhované: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5775,8 +5770,8 @@ msgstr "Heslo pre prihlásenie podľa konfigurácie" 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]" +"Nechajte prázdne pre vypnutie podpory pre PDF schémy, navrhované: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5819,8 +5814,8 @@ msgstr "Naposledy použitá tabuľka" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Nechajte prázdne pre vypnutie podpory [a@http://wiki.phpmyadmin.net/pma/" "relation]relation-links[/a]. Odporúčaná hodnota: [kbd]pma__relation[/kbd]" @@ -5839,8 +5834,8 @@ msgstr "SHOW DATABASES príkaz" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy " "overovania[/a]" @@ -5958,8 +5953,8 @@ msgstr "Sledované príkazy" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov. Odporúčaná " "hodnota: [kbd]pma__tracking[/kbd]" @@ -5981,8 +5976,8 @@ msgstr "Automaticky vytvárať verzie" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v " "databáze. Odporúčaná hodnota: [kbd]pma__userconfig[/kbd]" @@ -6010,8 +6005,8 @@ msgstr "Dlhé meno tohto servera" #: libraries/config/messages.inc.php:455 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)"" +"Či sa bude užívateľovi zobrazovať tlačidlo "zobraziť všetky (riadky)" +""" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" @@ -6111,8 +6106,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Zobraziť odkaz na výstup [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a] funkcie" +"Zobraziť odkaz na výstup [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a] funkcie" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6192,11 +6187,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie " -"[kbd]anonymous[/kbd])" +"Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie [kbd]anonymous" +"[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Užívateľ" @@ -6612,7 +6607,7 @@ msgstr "Databáza(y):" msgid "Table(s):" msgstr "Tabuľka(y):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Riadky:" @@ -6661,8 +6656,8 @@ msgstr ", meno tabuľky bude zmenené na @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -7192,8 +7187,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7209,7 +7204,7 @@ msgid "No data found for GIS visualization." msgstr "Neboli nájdené žiadne dáta pre GIS vizualizáciu." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." @@ -7329,11 +7324,11 @@ msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7384,7 +7379,7 @@ msgstr "Pridať prefix" msgid "Add prefix" msgstr "Pridať prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Skutočne chcete vykonať nasledovný príkaz?" @@ -7714,17 +7709,17 @@ msgid "Drop the database (DROP)" msgstr "Odstrániť databázu (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Iba štruktúru" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Štruktúru a dáta" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Iba dáta" @@ -7887,8 +7882,8 @@ msgstr "Vitajte v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -8146,7 +8141,7 @@ msgstr "Pridať názvy polí na prvý riadok" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8154,7 +8149,7 @@ msgstr "Hostiteľ" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8172,7 +8167,7 @@ msgstr "Verzia PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9257,7 +9252,7 @@ msgstr "Atribúty" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9422,7 +9417,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verzia" @@ -9884,13 +9879,13 @@ msgstr "Zoznam používatelov" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " -"%sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" +"sznovunačítanie práv%s predtým ako budete pokračovať." #: libraries/server_privileges.lib.php:3036 msgid "The selected user was not found in the privilege table." @@ -9900,63 +9895,260 @@ msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." msgid "You have added a new user." msgstr "Používateľ bol pridaný." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundy" +msgstr[2] "%d sekúnd" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minúta" +msgstr[1] "%d minúty" +msgstr[2] "%d minút" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Zvolený časový rozsah:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analyzátor dopytov" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitor inštrukcie" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Pridať graf" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vybrať série:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "alebo zadajte meno premennej:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Pridať túto sériu" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Série v grafe:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Spustiť monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Pokyny/Nastavenie" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Povoliť presúvanie grafov" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Obnovovacia frekvencia" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Stĺpce grafu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Obnoviť predvolené" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Výsledok SQL dopytu" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Vygenerované" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Súbory s dátami" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostatné" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Začiatok" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Celkový čas:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Čas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zavrieť" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Čas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Pridať tento SQL dopyt do obľúbených" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Názov" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dovoliť používať túto položku všetkým používateľom" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9977,10 +10169,6 @@ msgstr "Vyčistiť" msgid "Bookmark this SQL query:" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dovoliť používať túto položku všetkým používateľom" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Prepísať existujúci príkaz s rovnakým menom" @@ -10070,8 +10258,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " -"%sdocumentation%s." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" +"sdocumentation%s." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10120,7 +10308,7 @@ msgstr "Zvoliť neoptimálne" msgid "Sort" msgstr "Triediť" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Žiadny" @@ -10274,7 +10462,7 @@ msgstr "Efektívny" msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Chyba dopytu" @@ -10427,7 +10615,7 @@ msgstr "Chyba v ZIP archíve:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" @@ -10483,7 +10671,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Prepnúť príbuzné riadky" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" @@ -10543,43 +10731,43 @@ msgstr "Zlúčiť" msgid "Active options" msgstr "Zapnuté parametre" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Stránka bola vytvorená" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Stránka" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importovať zo zvolenej stránky" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportovať na zvolenú stránku" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Vytvoriť novú stránku a exportovať do nej" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nový názov stránky: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export to selected page" msgid "Export/Import to scale:" msgstr "Exportovať na zvolenú stránku" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10607,7 +10795,7 @@ msgstr "Bol pridaný interný vzťah" msgid "Relation deleted" msgstr "Vzťah bol odstránený" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10661,8 +10849,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " -"%sNastavovacieho skriptu%s." +"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %" +"sNastavovacieho skriptu%s." #: prefs_manage.php:308 msgid "Save to browser's storage" @@ -11032,188 +11220,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitor inštrukcie" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Pridať graf" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vybrať série:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "alebo zadajte meno premennej:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Pridať túto sériu" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Série v grafe:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Zvolený časový rozsah:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analyzátor dopytov" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundy" -msgstr[2] "%d sekúnd" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minúta" -msgstr[1] "%d minúty" -msgstr[2] "%d minút" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Spustiť monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Pokyny/Nastavenie" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Povoliť presúvanie grafov" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Obnovovacia frekvencia" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Stĺpce grafu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Obnoviť predvolené" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12206,8 +12212,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12248,24 +12254,24 @@ msgstr "" msgid "Wrong data" msgstr "Nesprávne dáta" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Záložka nebola vytvorená" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12278,21 +12284,11 @@ msgstr "" "zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po " "uložení." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Pridať tento SQL dopyt do obľúbených" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Názov" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Žiadne dáta" @@ -12504,143 +12500,143 @@ msgstr "Zvoľte, ktoré polia zobraziť" msgid "No column selected." msgstr "Nebol vybraný žiadny stĺpec." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledovanie %1$s bolo deaktivované vo verzii %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledovanie %1$s bolo aktivované vo verzii %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Odstrániť riadok o sledovaní tabuľky z výpisu" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Žiadne dáta" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dátum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktivovať sledovanie %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktivovať sledovanie %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Vytvoriť verziu %1$s z %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Vytvoriť verziu" @@ -12988,8 +12984,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13107,8 +13103,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13755,6 +13751,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavené na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Opakovať hlavičku každých %s riadkov" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -13947,9 +13946,9 @@ msgstr "concurrent_insert je nastavené na 0" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Povolením tejto možnosti umožníte stránke umiestnenej na inej doméne " -#~ "zavolať phpMyAdmina vo vnútri rámca a je potenciálnou " -#~ "[strong]bezpečnostnou dierou[/strong] dovoľujúcou XFS (cross-frame " -#~ "scripting) útoky" +#~ "zavolať phpMyAdmina vo vnútri rámca a je potenciálnou [strong]" +#~ "bezpečnostnou dierou[/strong] dovoľujúcou XFS (cross-frame scripting) " +#~ "útoky" #~ msgid "Allow third party framing" #~ msgstr "Povoliť vkladanie do cudzieho rámu" @@ -14495,8 +14494,8 @@ msgstr "concurrent_insert je nastavené na 0" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " -#~ "%s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" +#~ "s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index 13c832883c..cf923e3719 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-14 22:10+0200\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian " -"\n" -"Language: sl\n" +"Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3;\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%" +"100==4 ? 2 : 3;\n" "X-Generator: Weblate 1.6-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Iskanje:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Iskanje:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Izvedi" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -107,7 +107,7 @@ msgstr "" "Datoteka %s ni na voljo na tem sistemu; prosimo, za več informacij obiščite " "www.phpmyadmin.net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Zbirka podatkov %1$s je ustvarjena." @@ -135,7 +135,7 @@ msgstr "Pripombe tabele:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Stolpec" @@ -158,7 +158,7 @@ msgstr "Stolpec" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Vrsta" @@ -175,7 +175,7 @@ msgstr "Vrsta" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -190,7 +190,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Privzeto" @@ -232,9 +232,9 @@ msgstr "Pripombe" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -259,9 +259,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Da" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -391,7 +391,7 @@ msgstr "Sledene tabele" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Zbirka podatkov" @@ -399,17 +399,17 @@ msgstr "Zbirka podatkov" msgid "Last version" msgstr "Zadnja različica" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Ustvarjeno" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Posodobljeno" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stanje" @@ -422,7 +422,7 @@ msgstr "Stanje" msgid "Action" msgstr "Dejanje" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Pokaži" @@ -438,11 +438,11 @@ msgstr "Izbriši podatke sledenja te tabele" msgid "Drop" msgstr "Zavrzi" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ni aktivno" @@ -450,11 +450,11 @@ msgstr "ni aktivno" msgid "Versions" msgstr "Različice" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Poročilo sledenja" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Posnetek strukture" @@ -602,11 +602,11 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v " -"%sdokumentaciji%s ogledate načine, kako obiti omejitev." +"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v %" +"sdokumentaciji%s ogledate načine, kako obiti omejitev." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -653,7 +653,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" @@ -680,7 +680,7 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -890,7 +890,7 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." @@ -899,7 +899,7 @@ msgstr "Poizvedbe \"DROP DATABASE\" so izključene." msgid "Do you really want to execute \"%s\"?" msgstr "Ali res želite izvesti \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -983,8 +983,8 @@ msgstr "Ponovno nalaganje privilegijev" msgid "Removing Selected Users" msgstr "Odstranjevanje izbranih uporabnikov" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Zapri" @@ -1111,13 +1111,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1156,7 +1156,7 @@ msgid "Traffic" msgstr "Promet" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Nastavitve" @@ -1176,13 +1176,14 @@ msgstr "Dodaj grafikon na mrežo" msgid "Please add at least one variable to the series" msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Brez" @@ -1282,7 +1283,7 @@ msgstr "Spremeni nastavitve" msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Naslov grafikona" @@ -1369,7 +1370,7 @@ msgstr "Razloži izhod" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Čas" @@ -1467,7 +1468,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" @@ -1524,7 +1525,7 @@ msgid "Cancel" msgstr "Prekliči" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Nalaganje" @@ -1672,7 +1673,7 @@ msgstr "Skrij polje poizvedbe" msgid "Show query box" msgstr "Prikaži polje poizvedbe" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1685,7 +1686,7 @@ msgstr "Uredi" msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1768,7 +1769,7 @@ msgstr "Vsebina kazalca podatkov" msgid "Ignore" msgstr "Prezri" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopiraj" @@ -1784,7 +1785,7 @@ msgstr "Daljica" msgid "Polygon" msgstr "Večkotnik" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrija" @@ -2249,8 +2250,8 @@ msgstr "Nepričakovani znaki v vrstici %s." #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel " -"»%2$s«." +"Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel »%2" +"$s«." #: libraries/Advisor.class.php:467 msgid "per second" @@ -2269,32 +2270,32 @@ msgstr "na uro" msgid "per day" msgstr "na dan" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Obstoječa konfiguracijska datoteka (%s) ni berljiva." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Napačna dovoljenja konfiguracijski datoteke; ne sme biti vsem zapisljiva!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Velikost pisave" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Naraščajoče" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2440,14 +2441,14 @@ msgstr "Prebrskaj" msgid "Delete the matches for the %s table?" msgstr "Izbrišem zadetke v tabeli %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Izbriši" @@ -2534,16 +2535,11 @@ msgstr "vodoravno (zasukani naslovi)" msgid "vertical" msgstr "navpičnem" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Glave vsakih %s vrstic" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Uredi po ključu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2570,89 +2566,89 @@ msgstr "Uredi po ključu" msgid "Options" msgstr "Možnosti" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Delna besedila" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Polna besedila" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relacijski prikazni stolpec" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Prikaži dvojiške vsebine" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Prikaži dvojiške vsebine kot HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Skrij pretvorbo z brskalnikom" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Dobro poznano besedilo" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Dobro poznana dvojiška datoteka" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Prekini proces" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Morda je približno. Glej [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "v poizvedbi" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "skupaj" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2661,8 +2657,8 @@ msgstr "Poizvedba je potrebovala %01.4f s" msgid "With selected:" msgstr "Z označenim:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2673,45 +2669,45 @@ msgstr "Z označenim:" msgid "Check All" msgstr "Označi vse" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvozi" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Ustvari pogled" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Pogled za tiskanje" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -2789,38 +2785,38 @@ msgstr "Ni definiranega indeksa!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Stisnjen" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Pripomba" @@ -2862,7 +2858,7 @@ msgstr "Pogled" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -3013,15 +3009,15 @@ msgstr[3] "Vstavil sem %1$d vrstic." msgid "Error while creating PDF:" msgstr "Napaka med ustvarjanjem PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Ne morem shraniti nedavne tabele" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Nedavne tabele" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Ni nobenih nedavnih tabel" @@ -3191,8 +3187,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1603 #, php-format @@ -3262,7 +3258,7 @@ msgid "Maximum rows to plot" msgstr "Največje število vrstic za izris" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" @@ -3373,20 +3369,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Majhno število z decimalno vejico; dovoljene so vrednosti od -3,402823466E" "+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do 3,402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od " -"-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " +"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od -" +"1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " "2,2250738585072014E-308 do 1,7976931348623157E+308" #: libraries/Types.class.php:312 @@ -3665,7 +3661,7 @@ msgstr "Naštevanje, izbrano s seznama določenih vrednosti" msgid "Max: %s%s" msgstr "Največja velikost: %s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Poizvedba SQL:" @@ -3724,7 +3720,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "V vrstici" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiliranje" @@ -4146,8 +4142,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Skrivno geslo, ki se uporabi pri šifriranju piškotkov v overovitvi " -"[kbd]cookie[/kbd]" +"Skrivno geslo, ki se uporabi pri šifriranju piškotkov v overovitvi [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:21 msgid "Blowfish secret" @@ -4188,8 +4184,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Določa, katera vrsta urejevalnih kontrolnikov naj se uporablja za stolpce " -"CHAR in VARCHAR; [kbd]input[/kbd] – omogoča omejevanje dolžine vnosa, " -"[kbd]textarea[/kbd] – omogoča nove vrstice v stolpcu" +"CHAR in VARCHAR; [kbd]input[/kbd] – omogoča omejevanje dolžine vnosa, [kbd]" +"textarea[/kbd] – omogoča nove vrstice v stolpcu" #: libraries/config/messages.inc.php:29 msgid "CHAR columns editing" @@ -4197,8 +4193,8 @@ msgstr "Urejanje stolpcev CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Uporabi uporabniku prijazen urejevalnik za urejanje poizvedb SQL ([a@http://" "codemirror.net/]CodeMirror[/a]) z obarvanjem skladnje in številkami vrstic" @@ -4734,9 +4730,8 @@ msgstr "Naslovi strani" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Določite besedilo naslovne vrstice brskalnika. Oglejte si " "[doc@cfg_TitleTable]dokumentacijo[/doc] za čarobne nize, ki jih lahko " @@ -4861,10 +4856,10 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Če želite uporabljati storitev Preverjalnika SQL, se zavedajte, da " -"[strong]so vse izjave SQL brezimno shranjene v statistične namene[/strong]." -"[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright " -"2002 Upright Database Technology. Vse pravice pridržane.[/em]" +"Če želite uporabljati storitev Preverjalnika SQL, se zavedajte, da [strong]" +"so vse izjave SQL brezimno shranjene v statistične namene[/strong].[br][em]" +"[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 " +"Upright Database Technology. Vse pravice pridržane.[/em]" #: libraries/config/messages.inc.php:220 msgid "Startup" @@ -5543,11 +5538,11 @@ msgstr "Tabela zaznamkov" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: " -"[kbd]pma__column_info[/kbd]" +"Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5617,8 +5612,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: " -"[kbd]pma__designer_coords[/kbd]" +"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5629,9 +5624,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Več informacij na [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]sledilniku hroščev PMA[/a] in[a@http://bugs.mysql." -"com/19588]hroščih MySQL[/a]" +"Več informacij na [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5723,8 +5717,8 @@ msgstr "Geslo za overovitev config" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Pustite prazno, če ne želite podpore sheme PDF; predlagano: " -"[kbd]pma__pdf_pages[/kbd]" +"Pustite prazno, če ne želite podpore sheme PDF; predlagano: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5767,8 +5761,8 @@ msgstr "Nedavno uporabljena tabela" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/" "relation]relacijskih povezav[/a]; priporočeno: [kbd]pma__relation[/kbd]" @@ -5787,8 +5781,8 @@ msgstr "Ukaz SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste " "overovitev[/a] za primer" @@ -5823,8 +5817,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Pustite prazno, če ne želite podpore sheme PDF; predlagano: " -"[kbd]pma__table_coords[/kbd]" +"Pustite prazno, če ne želite podpore sheme PDF; predlagano: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5902,11 +5896,11 @@ msgstr "Izjave za sledenje" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: " -"[kbd]pma__tracking[/kbd]" +"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5925,8 +5919,8 @@ msgstr "Samodejno ustvari različice" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma__userconfig[/kbd]" @@ -6051,8 +6045,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6132,11 +6126,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Če imate uporabniško ime po meri, ga določite tukaj (privzeto " -"[kbd]anonymous[/kbd])" +"Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous" +"[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Uporabniško ime" @@ -6542,7 +6536,7 @@ msgstr "Zbirke podatkov:" msgid "Table(s):" msgstr "Tabele:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Vrstice:" @@ -6591,8 +6585,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -7145,8 +7139,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -7164,7 +7158,7 @@ msgid "No data found for GIS visualization." msgstr "Za predstavitev GIS ni najdenih podatkov." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." @@ -7285,11 +7279,11 @@ msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -7334,7 +7328,7 @@ msgstr "Dodaj predpono tabele:" msgid "Add prefix" msgstr "Dodaj predpono" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" @@ -7663,17 +7657,17 @@ msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura in podatki" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podatki" @@ -7834,8 +7828,8 @@ msgstr "Dobrodošli v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -8085,13 +8079,13 @@ msgstr "Postavi imena stolpcev v prvo vrstico:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Gostitelj:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Čas nastanka:" @@ -8105,7 +8099,7 @@ msgstr "Različica PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Zbirka podatkov:" @@ -8227,8 +8221,8 @@ msgid "" "(7,8,9)" msgstr "" "vključi več vrstic v vsaki izjavi INSERT
    " -"  Primer: INSERT INTO ime_tabele VALUES (1,2,3), (4,5,6), " -"(7,8,9)" +"  Primer: INSERT INTO ime_tabele VALUES (1,2,3), (4,5,6), (7,8,9)" +"" #: libraries/plugins/export/ExportSql.class.php:366 msgid "" @@ -8379,7 +8373,6 @@ msgstr "" "težave in poskusite znova." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Ne morem razčleniti preglednice OpenDocument!" @@ -9225,7 +9218,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9388,7 +9381,7 @@ msgid "Library" msgstr "Knjižnica" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Različica" @@ -9848,8 +9841,8 @@ msgstr "Pregled uporabnikov" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " @@ -9864,46 +9857,267 @@ msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundi" +msgstr[2] "%d sekunde" +msgstr[3] "%d sekund" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuta" +msgstr[1] "%d minuti" +msgstr[2] "%d minute" +msgstr[3] "%d minut" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistika dnevnikov" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Izbrano časovno območje:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Rezultati so združeni po besedilu poizvedbe." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analitik poizvedb" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Navodila nadziranja" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Nadziranje phpMyAdmin vam lahko pomaga pri optimizaciji konfiguracije " +"strežnika in izsleditvi časovno zahtevnih poizvedb. Za slednje morate " +"nastaviti log_output na 'TABLE' in imeti omogočen ali slow_query_log ali " +"general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " +"poveča obremenitev strežnika do 15 %." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Žal vaš strežnik zbirk podatkov ne podpira beleženja v tabelo, ki je " +"zahtevano za analiziranje dnevnikov zbirk podatov s phpMyAdmin. Beleženje v " +"tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate " +"strežniške zmožnosti izrisa grafikonov." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Uporaba monitorja:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Vaš brskalnik bo osveževal vse prikazane grafikone v rednih razmikih. Pod " +"'Nastavitve' lahko dodate grafikone in spremenite pogostost osveževanja ali " +"pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " +"grafikonu." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Za prikaz poizvedb iz dnevnikov izberite ustrezno časovno obdobje na katerem " +"koli grafikonu tako, da pridržite levi miškin gumb in kazalec povlečete čez " +"grafikon. Ko potrdite, bo to naložilo tabelo združenih poizvedb, kjer lahko " +"kliknete na katere koli ponavljajoče stavke SELECT in jih naprej analizirate." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Prosimo, pomnite:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Omogočitev general_log lahko poveča obremenitev strežnika za 5–15 %. " +"Zavedajte se tudi, da je ustvarjanje statistik iz dnevnikov zelo " +"obremenjujoče opravilo, zato je priporočljivo, da izberete samo majhen " +"časovni razpon ter onemogočite general_log in počistite njene tabele, ko " +"nadziranja ne potrebujete več." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Dodaj grafikon" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Prednastavljeni grafikon" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Spremenljivke stanja" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Izberite serije:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Pogosto nadzirano" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ali vnesite ime spremenljivke:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Prikaži kot vrednost razlike" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Uporabi delitelja" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Pripni enoto k vrednostim podatkov" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Dodaj serijo" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Počisti serije" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serije v grafikonu:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Začni nadziranje" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Navodila/Namestitev" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Premikanje (preurejanje) grafikonov je končano" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Omogoči premikanje grafikonov" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Hitrost osveževanja" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Stolpci grafikona" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Razvrstitev grafikonov" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " +"zapleteno nastavitev, jo boste morda želeli izvoziti." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Povrni na privzeto" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Rezultat SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Ustvaril:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Podrobni profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Vrstni red" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Stanje" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Povzetek po stanju" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Skupni čas" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% časa" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Klicev" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø časa" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Označi to poizvedbo SQL" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Oznaka:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dovoli dostop do zaznamka vsem uporabnikom" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9922,10 +10136,6 @@ msgstr "Počisti" msgid "Bookmark this SQL query:" msgstr "Označi to poizvedbo SQL:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dovoli dostop do zaznamka vsem uporabnikom" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamenjaj obstoječ zaznamek z istim imenom" @@ -10064,7 +10274,7 @@ msgstr "Preveri prekoračene" msgid "Sort" msgstr "Razvrsti" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Brez" @@ -10218,7 +10428,7 @@ msgstr "Učinkovito" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Napaka poizvedbe" @@ -10369,7 +10579,7 @@ msgstr "Napaka v arhivu ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Usodna napaka: Do navigacije lahko dostopate samo z Ajaxom" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" @@ -10425,7 +10635,7 @@ msgstr "Preklopi majhno/veliko" msgid "Toggle relation lines" msgstr "Preklopi relacijske črte" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Uvozi/Izvozi koordinate za PDF-shemo" @@ -10483,39 +10693,39 @@ msgstr "Agregat" msgid "Active options" msgstr "Dejavne možnosti" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Stran je bila ustvarjena" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Ustvarjanje strani je spodletelo" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Stran:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Uvozi z izbrane strani" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Izvozi na izbrano stran" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Ustvari stran in izvozi nanjo" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Ime nove strani: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Izvozi/Uvozi v razmerju:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "priporočeno" @@ -10543,7 +10753,7 @@ msgstr "Dodana notranja razmerja" msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Napaka pri shranjevanju koordinat Oblikovalnika." @@ -10992,214 +11202,6 @@ msgstr "" "nastavitve naenkrat, opazovanje ali primerjalno preizkušanje vaše zbirke " "podatkov in razveljavitev spremembe, če ni jasno izmerljivega izboljšanja." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Navodila nadziranja" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Nadziranje phpMyAdmin vam lahko pomaga pri optimizaciji konfiguracije " -"strežnika in izsleditvi časovno zahtevnih poizvedb. Za slednje morate " -"nastaviti log_output na 'TABLE' in imeti omogočen ali slow_query_log ali " -"general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " -"poveča obremenitev strežnika do 15 %." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Žal vaš strežnik zbirk podatkov ne podpira beleženja v tabelo, ki je " -"zahtevano za analiziranje dnevnikov zbirk podatov s phpMyAdmin. Beleženje v " -"tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate " -"strežniške zmožnosti izrisa grafikonov." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Uporaba monitorja:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Vaš brskalnik bo osveževal vse prikazane grafikone v rednih razmikih. Pod " -"'Nastavitve' lahko dodate grafikone in spremenite pogostost osveževanja ali " -"pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " -"grafikonu." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Za prikaz poizvedb iz dnevnikov izberite ustrezno časovno obdobje na katerem " -"koli grafikonu tako, da pridržite levi miškin gumb in kazalec povlečete čez " -"grafikon. Ko potrdite, bo to naložilo tabelo združenih poizvedb, kjer lahko " -"kliknete na katere koli ponavljajoče stavke SELECT in jih naprej analizirate." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Prosimo, pomnite:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Omogočitev general_log lahko poveča obremenitev strežnika za 5–15 %. " -"Zavedajte se tudi, da je ustvarjanje statistik iz dnevnikov zelo " -"obremenjujoče opravilo, zato je priporočljivo, da izberete samo majhen " -"časovni razpon ter onemogočite general_log in počistite njene tabele, ko " -"nadziranja ne potrebujete več." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Dodaj grafikon" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Prednastavljeni grafikon" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Spremenljivke stanja" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Izberite serije:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Pogosto nadzirano" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ali vnesite ime spremenljivke:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Prikaži kot vrednost razlike" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Uporabi delitelja" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Pripni enoto k vrednostim podatkov" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Dodaj serijo" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Počisti serije" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serije v grafikonu:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistika dnevnikov" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Izbrano časovno območje:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Rezultati so združeni po besedilu poizvedbe." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analitik poizvedb" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundi" -msgstr[2] "%d sekunde" -msgstr[3] "%d sekund" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuta" -msgstr[1] "%d minuti" -msgstr[2] "%d minute" -msgstr[3] "%d minut" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Začni nadziranje" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Navodila/Namestitev" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Premikanje (preurejanje) grafikonov je končano" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Omogoči premikanje grafikonov" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Hitrost osveževanja" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Stolpci grafikona" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Razvrstitev grafikonov" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " -"zapleteno nastavitev, jo boste morda želeli izvoziti." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Povrni na privzeto" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11974,9 +11976,9 @@ msgid "" "Otherwise you will be only able to download or display it." msgstr "" "Prosimo, na spletnem strežniku ustvarite zapisljivo mapo [em]config[/em] v " -"najvišjem nivoju mape phpMyAdmina, kot opisuje " -"[doc@setup_script]dokumentacija[/doc]. V naprotnem primeru jo boste lahko " -"samo prenesli ali jo prikazali." +"najvišjem nivoju mape phpMyAdmina, kot opisuje [doc@setup_script]" +"dokumentacija[/doc]. V naprotnem primeru jo boste lahko samo prenesli ali jo " +"prikazali." #: setup/frames/index.inc.php:60 msgid "" @@ -12123,8 +12125,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)" -"[br]Najnovejša stabilna različica je %s, izdana %s." +"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)[br]" +"Najnovejša stabilna različica je %s, izdana %s." #: setup/lib/index.lib.php:203 msgid "No newer stable version is available" @@ -12235,8 +12237,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Nastavili ste vrsto overovitve [kbd]config[/kbd] in vključili uporabniško " "ime in geslo za samodejno prijavo, kar ni zaželena možnost za gostitelje " @@ -12284,24 +12286,24 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." msgid "Wrong data" msgstr "Napačni podatki" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Zaznamek ni ustvarjen" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12310,19 +12312,11 @@ msgstr "" "Tabela %s ne vsebuje unikatnega stolpca. Zmožnosti urejanja mreže, " "potrditvena polja, Uredi, Kopiraj in Izbriši niso na voljo." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Označi to poizvedbo SQL" - -#: sql.php:1191 -msgid "Label:" -msgstr "Oznaka:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Ni podatkov za prikaz" @@ -12528,31 +12522,31 @@ msgstr "Izberite stolpec za prikaz:" msgid "No column selected." msgstr "Ni izbranih stolpcev." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Poročilo sledenja za tabelo `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Različica %1$s je ustvarjena, sledenje %2$s je aktivirano." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledenje %1$s je bilo deaktivirano pri različici %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledenje %1$s je bilo aktivirano pri različici %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Stavki SQL so izvedeni." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12560,115 +12554,115 @@ msgstr "" "Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke " "podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih " "izvršite." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Različica posnetka %s (koda SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Opredelitev sledenja podatkom je uspešno izbrisana" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Stavek upravljanja s podatki je uspešno izbrisan" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Sledenje stavkom" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Prikaži %1$s z datumi od %2$s do %3$s uporabnika %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Izbriši vrstico podatkov sledenja iz poročila" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Brez podatkov" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Stavek opredeljevanja podatkov" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Stavek upravljanja s podatki" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Odložen SQL (prenos datoteke)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Odložen SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Izvršitev SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Izvozi kot %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Prikaži različice" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktiviraj sledenje za %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Dezaktiviraj zdaj" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktiviraj sledenje %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiviraj zdaj" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Ustvari različico %1$s tabele %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Sledi tem stavkom opredeljevanja podatkov:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Sledi tem stavkom upravljanja s podatki:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Ustvari različico" @@ -13065,8 +13059,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s " "skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%" @@ -13221,8 +13215,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja " "od 10 %%." @@ -13977,6 +13971,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Glave vsakih %s vrstic" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14230,9 +14227,8 @@ msgstr "concurrent_insert je nastavljeno na 0" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Omogočitev tega dovoljuje strani, ki se nahaja na drugačni domeni, " -#~ "vključitev phpMyAdmina v okvirju, kar predstavlja morebitno " -#~ "[strong]varnostno luknjo[/strong], saj dovoljuje skriptne napade preko " -#~ "okvirjev" +#~ "vključitev phpMyAdmina v okvirju, kar predstavlja morebitno [strong]" +#~ "varnostno luknjo[/strong], saj dovoljuje skriptne napade preko okvirjev" #~ msgid "Allow third party framing" #~ msgstr "Dovoli uokvirjanje tretjim osebam" @@ -14270,14 +14266,14 @@ msgstr "concurrent_insert je nastavljeno na 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Ko je nastavljeno na [kbd]nested[/kbd], je pridevek imena tabele " -#~ "uporabljen samo za razdružitev/združitev tabel v skladu z določilom " -#~ "$cfg['LeftFrameTableSeparator'], zato je samo mapa imenovana kot " -#~ "pridevek, sama imena tabel pa ostanejo nespremenjena" +#~ "uporabljen samo za razdružitev/združitev tabel v skladu z določilom $cfg" +#~ "['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, " +#~ "sama imena tabel pa ostanejo nespremenjena" #~ msgid "Display table comment instead of its name" #~ msgstr "Prikaži pripombo tabele namesto njenega imena" diff --git a/po/sq.po b/po/sq.po index 8108a19ec1..aefffbe01c 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-06 16:49+0200\n" "Last-Translator: Spartak Ferrollari \n" "Language-Team: Albanian \n" -"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Kërkim:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Kërkim:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Zbato" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Emri i kyçit" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Përshkrimi" @@ -107,7 +107,7 @@ msgstr "" "Skedari %s nuk ështe i disponueshëm në këtë sistem, ju lutem vizitoni www." "phpmyadmin.net për informacione të mëtejshme." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "U krijua baza e të dhënave %1$s." @@ -135,7 +135,7 @@ msgstr "Kërkim:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolonë(a)" @@ -158,7 +158,7 @@ msgstr "Kolonë(a)" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Lloji" @@ -175,7 +175,7 @@ msgstr "Lloji" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -190,7 +190,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Prezgjedhur" @@ -232,9 +232,9 @@ msgstr "Komente" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Jo" @@ -259,9 +259,9 @@ msgstr "Jo" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Po" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -389,7 +389,7 @@ msgstr "Tabela të monitoruara" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databazat" @@ -397,17 +397,17 @@ msgstr "Databazat" msgid "Last version" msgstr "Versioni i fundit" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Krijuar" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Përditësuar" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Gjendja" @@ -420,7 +420,7 @@ msgstr "Gjendja" msgid "Action" msgstr "Veprimi" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Shfaq" @@ -436,11 +436,11 @@ msgstr "Fshij të dhënat e monitorimit për këtë tabelë" msgid "Drop" msgstr "Elemino" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "jo-aktiv" @@ -448,11 +448,11 @@ msgstr "jo-aktiv" msgid "Versions" msgstr "Versione" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Raporti i monitorimit" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Pamje çasti e strukturës" @@ -600,8 +600,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Ndoshta po mundohesh të ngarkosh në server një skedar shumë të madh. " "Referoju %sdokumentacionit%s nëse do ta kapërcesh këtë limit." @@ -653,7 +653,7 @@ msgstr "" "Nuk mund të ngarkohen plugin-et e importimit, ju lutem kontrolloni " "instalimin tuaj!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Shenjuesi %s u krijua" @@ -682,7 +682,7 @@ msgstr "" "phpMyAdmin të mbarojë të gjitha veprimet, vetëm nëse ju rrisni kohën limit " "në PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -849,8 +849,8 @@ msgstr "" #: index.php:468 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -"Tani nevojitet një fjalëkalim sekret për skedarin e " -"konfigurimit(blowfish_secret)." +"Tani nevojitet një fjalëkalim sekret për skedarin e konfigurimit" +"(blowfish_secret)." #: index.php:479 msgid "" @@ -872,8 +872,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Konfigurimi i depos së phpMyAdmin nuk është kryer plotësisht, prandaj disa " -"nga karakteristikat shtesë janë ç'aktivizuar. Për të kuptuar përse, klikoni " -"%skëtu%s." +"nga karakteristikat shtesë janë ç'aktivizuar. Për të kuptuar përse, klikoni %" +"skëtu%s." #: index.php:521 #, php-format @@ -893,7 +893,7 @@ msgstr "" "Serveri është në gjendje ekzekutimi Suhosin. Referojuni %sdokumentacionit%s " "për probleme të mundshme." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." @@ -902,7 +902,7 @@ msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." msgid "Do you really want to execute \"%s\"?" msgstr "Jeni i sigurt që dëshironi të ekzekutoni \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" @@ -987,8 +987,8 @@ msgstr "Duke ringarkuar të drejtat" msgid "Removing Selected Users" msgstr "Duke hequr përdoruesit e zgjedhur" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Mbyll" @@ -1116,13 +1116,13 @@ msgstr "Bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1161,7 +1161,7 @@ msgid "Traffic" msgstr "Trafiku" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Parametrat" @@ -1181,13 +1181,14 @@ msgstr "Shto diagramë në rrjetë" msgid "Please add at least one variable to the series" msgstr "Ju lutem shtoni së paku një ndryshore në seri" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Asnjë lloj" @@ -1280,7 +1281,7 @@ msgstr "Modifiko parametrat" msgid "Current settings" msgstr "Parametrat aktuale" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Titulli i grafikut" @@ -1360,7 +1361,7 @@ msgstr "Shpjego nxjerrjen" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Koha" @@ -1451,7 +1452,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importo" @@ -1508,7 +1509,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Duke ngarkuar" @@ -1656,7 +1657,7 @@ msgstr "Fshih kutinë e query" msgid "Show query box" msgstr "Afisho kutinë e query" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1669,7 +1670,7 @@ msgstr "Ndrysho" msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1751,7 +1752,7 @@ msgstr "Përmbajtja e të dhënave të kësaj pike" msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1767,7 +1768,7 @@ msgstr "Linjë-varg" msgid "Polygon" msgstr "Shumëkëndësh" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Gjeometria" @@ -2236,31 +2237,31 @@ msgstr "në orë" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Në ngjitje" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2412,14 +2413,14 @@ msgstr "Shfleto" msgid "Delete the matches for the %s table?" msgstr "Të fshihen të dhënat korresponduese me tabelën %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Fshi" @@ -2512,16 +2513,11 @@ msgstr "horizontal (headers të rrotulluar)" msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Tituj çdo %s rreshta" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Rendit sipas kyçit" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2548,95 +2544,95 @@ msgstr "Rendit sipas kyçit" msgid "Options" msgstr "Mundësitë" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Tekst i pjesshëm" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Teksti i plotë" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Çelësi relacional" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema relacionale" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Hiq" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "tek query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Kjo pamje ka të paktën këtë numër rreshtash. Për më shumë referojuni " -"%sdokumentacionit%s." +"Kjo pamje ka të paktën këtë numër rreshtash. Për më shumë referojuni %" +"sdokumentacionit%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "Gjithsej" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2645,8 +2641,8 @@ msgstr "Query ka zgjatur %01.4f sec" msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2657,48 +2653,48 @@ msgstr "N.q.s. të zgjedhur:" msgid "Check All" msgstr "Zgjidh gjithçka" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporto" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Versioni i MySQL" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Shfaq për printim" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -2775,38 +2771,38 @@ msgstr "Asnjë tregues i përcaktuar!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Tregues" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "I vetëm" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Rradhitja" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komente" @@ -2846,7 +2842,7 @@ msgstr "Paraqitje" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -2994,16 +2990,16 @@ msgstr[1] "%1$d rreshta të shtuar." msgid "Error while creating PDF:" msgstr "Gabim gjatë krijimit të PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Asnjë tabelë" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3252,7 +3248,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" @@ -3354,14 +3350,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3604,7 +3600,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Madhësia maksimum: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3665,7 +3661,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4150,8 +4146,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4718,9 +4714,8 @@ msgstr "Numri i faqes:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5489,8 +5484,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5696,8 +5691,8 @@ msgstr "Analizo tabelën" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5715,8 +5710,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5820,8 +5815,8 @@ msgstr "Instruksione" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5841,8 +5836,8 @@ msgstr "Versioni i MySQL" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6037,8 +6032,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" @@ -6454,7 +6449,7 @@ msgstr "Databazat" msgid "Table(s):" msgstr "Tabela" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6510,8 +6505,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7026,8 +7021,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7045,7 +7040,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." @@ -7167,11 +7162,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7226,7 +7221,7 @@ msgstr "Zëvendëso prefiksin e tabelës" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7568,17 +7563,17 @@ msgid "Drop the database (DROP)" msgstr "Fshij bazën e të dhënave (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Vetëm struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura dhe të dhënat" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Vetëm të dhënat" @@ -7751,8 +7746,8 @@ msgstr "Mirësevini tek %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8033,7 +8028,7 @@ msgstr "Vendos emrat e kollonave tek rreshti i parë" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8041,7 +8036,7 @@ msgstr "Pritësi" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8059,7 +8054,7 @@ msgstr "Versioni i PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9236,7 +9231,7 @@ msgstr "Pronësi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Shtesë" @@ -9412,7 +9407,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Versioni i PHP" @@ -9892,8 +9887,8 @@ msgstr "Paraqitja e përgjithshme e përdoruesve" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " "privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " @@ -9908,60 +9903,274 @@ msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." msgid "You have added a new user." msgstr "Ke shtuar një përdorues të ri." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "në sekondë" +msgstr[1] "në sekondë" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "në përdorim" +msgstr[1] "në përdorim" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistikat e rreshtave" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Zgjidh Tabelat" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Lloji i query" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Shto një fushë të re" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Ndysho emrin e databazës në" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Zgjidh Tabelat" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Shto një përdorues të ri" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "query SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sht" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Rifresko" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Shto/Fshi kollonat e fushës" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Rezultati SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Gjeneruar nga" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Vetëm të dhëna" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Të tjera" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Gjendja" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Koha gjithsej:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Koha" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Mbyll" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Koha" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Shtoja të preferuarve këtë query SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiketë" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -9983,10 +10192,6 @@ msgstr "Kalendari" msgid "Bookmark this SQL query:" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10128,7 +10333,7 @@ msgstr "Zgjidh të mbingarkuarit" msgid "Sort" msgstr "Renditja" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10294,7 +10499,7 @@ msgstr "Efektiv" msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10463,7 +10668,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Ndryshimet u ruajtën" @@ -10521,7 +10726,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Kineze tradicionale" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10596,52 +10801,52 @@ msgstr "Krijo" msgid "Active options" msgstr "Opcione për tabelën" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabela %s u eleminua" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Përdorimi" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importo files" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Nuk ka rreshta të zgjedhur" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Krijo një tregues të ri" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Emri i përdoruesit" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Nuk ka rreshta të zgjedhur" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10671,7 +10876,7 @@ msgstr "Relacione të brendshme" msgid "Relation deleted" msgstr "Shiko relacionet" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11095,205 +11300,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Shto një fushë të re" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Ndysho emrin e databazës në" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Zgjidh Tabelat" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Shto një përdorues të ri" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "query SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistikat e rreshtave" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Zgjidh Tabelat" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Lloji i query" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "në sekondë" -msgstr[1] "në sekondë" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "në përdorim" -msgstr[1] "në përdorim" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sht" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Rifresko" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Shto/Fshi kollonat e fushës" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12191,8 +12197,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12235,47 +12241,37 @@ msgstr "" msgid "Wrong data" msgstr "Asnjë databazë" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Shtoja të preferuarve këtë query SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiketë" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12516,150 +12512,150 @@ msgstr "Zgjidh fushën që dëshiron të shohësh" msgid "No column selected." msgstr "Nuk ka rreshta të zgjedhur" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Gjurmimi është aktiv." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Gjurmimi është aktiv." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Asnjë databazë" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Të dhëna" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versioni i MySQL" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Versioni i MySQL" @@ -13034,8 +13030,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13163,8 +13159,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13827,6 +13823,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Headers every %s rows" +#~ msgstr "Tituj çdo %s rreshta" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -14189,8 +14188,8 @@ msgstr "" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar " -#~ "%s queries." +#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %" +#~ "s queries." #~ msgid "Chart generated successfully." #~ msgstr "Të drejtat u përditësuan me sukses." diff --git a/po/sr.po b/po/sr.po index 5d81fd7b01..53beb1e1cd 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian \n" -"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.6-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Претраживање" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Претраживање" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Крени" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Име кључа" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Опис" @@ -108,7 +108,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "База %1$s је креирана." @@ -138,7 +138,7 @@ msgstr "Коментари табеле" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Колона" @@ -161,7 +161,7 @@ msgstr "Колона" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тип" @@ -178,7 +178,7 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -193,7 +193,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Подразумевано" @@ -235,9 +235,9 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Не" @@ -262,9 +262,9 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Да" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Табела" @@ -409,7 +409,7 @@ msgstr "Провери табелу" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "База података" @@ -418,18 +418,18 @@ msgstr "База података" msgid "Last version" msgstr "Направи релацију" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 #, fuzzy msgid "Created" msgstr "Направи" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Статус" @@ -442,7 +442,7 @@ msgstr "Статус" msgid "Action" msgstr "Акција" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Прикажи" @@ -458,11 +458,11 @@ msgstr "" msgid "Drop" msgstr "Одбаци" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -471,11 +471,11 @@ msgstr "" msgid "Versions" msgstr "Персијски" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" @@ -641,14 +641,14 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " -"%sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" +"sдокументацију%s за начине превазилажења овог ограничења." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -692,7 +692,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" @@ -719,7 +719,7 @@ msgstr "" "да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не " "повећате временска ограничења у PHP-у." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -939,7 +939,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." @@ -949,7 +949,7 @@ msgstr "\"DROP DATABASE\" команда је онемогућена." msgid "Do you really want to execute \"%s\"?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -1052,8 +1052,8 @@ msgstr "Поново учитај привилегије" msgid "Removing Selected Users" msgstr "Уклони изабране кориснике" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1196,13 +1196,13 @@ msgstr "бајтова" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1243,7 +1243,7 @@ msgid "Traffic" msgstr "Саобраћај" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1269,13 +1269,14 @@ msgstr "Држи се мреже" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "нема" @@ -1375,7 +1376,7 @@ msgstr "Опште особине релација" msgid "Current settings" msgstr "Опште особине релација" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1465,7 +1466,7 @@ msgstr "Објасни SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Време" @@ -1575,7 +1576,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" @@ -1642,7 +1643,7 @@ msgid "Cancel" msgstr "Откажи" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Локални" @@ -1826,7 +1827,7 @@ msgstr "SQL упит" msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1839,7 +1840,7 @@ msgstr "Промени" msgid "No rows selected" msgstr "Нема одабраних редова" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1931,7 +1932,7 @@ msgstr "Величина показивача података" msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Копирај" @@ -1949,7 +1950,7 @@ msgstr "Линије се завршавају са" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2496,31 +2497,31 @@ msgstr "на сат" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Величина фонта" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Растући" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2681,14 +2682,14 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Обриши" @@ -2797,16 +2798,11 @@ msgstr "хоризонталном (ротирана заглавља)" msgid "vertical" msgstr "вертикалном" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Сортирај по кључу" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2833,98 +2829,98 @@ msgstr "Сортирај по кључу" msgid "Options" msgstr "Опције" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Део текста" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Пун текст" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Релациона схема" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона схема" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформације читача" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Обустави" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Може бити приближно. Видите [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "у упиту" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "укупно" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2933,8 +2929,8 @@ msgstr "Упит је трајао %01.4f секунди" msgid "With selected:" msgstr "Означено:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2945,48 +2941,48 @@ msgstr "Означено:" msgid "Check All" msgstr "Означи све" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "За штампу" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Веза није пронађена" @@ -3068,38 +3064,38 @@ msgstr "Кључ није дефинисан!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Кључеви" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Сортирање" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Коментари" @@ -3140,7 +3136,7 @@ msgstr "Поглед" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3292,18 +3288,18 @@ msgstr[1] "Нема одабраних редова" msgid "Error while creating PDF:" msgstr "Дозвољава читање података." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Нема табела" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Провери табелу" @@ -3555,7 +3551,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Прегледај стране вредности" @@ -3658,14 +3654,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3910,7 +3906,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимална величина: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3973,7 +3969,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складиштења" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профилисање" @@ -4463,8 +4459,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5042,9 +5038,8 @@ msgstr "Број стране:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5837,8 +5832,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -6045,8 +6040,8 @@ msgstr "Анализирај табелу" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -6064,8 +6059,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6169,8 +6164,8 @@ msgstr "Име" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6191,8 +6186,8 @@ msgstr "Режим аутоматског опоравка" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6390,8 +6385,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Корисничко име:" @@ -6812,7 +6807,7 @@ msgstr "Базе" msgid "Table(s):" msgstr "Табеле" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6872,8 +6867,8 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -7426,8 +7421,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7445,7 +7440,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." @@ -7571,11 +7566,11 @@ msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7632,7 +7627,7 @@ msgstr "Додај ново поље" msgid "Add prefix" msgstr "Додај ново поље" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7972,17 +7967,17 @@ msgid "Drop the database (DROP)" msgstr "Одбаци базу (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Само структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структура и подаци" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Само подаци" @@ -8155,8 +8150,8 @@ msgstr "Добродошли на %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." @@ -8441,7 +8436,7 @@ msgstr "Стави имена поља у први ред" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8449,7 +8444,7 @@ msgstr "Домаћин" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8467,7 +8462,7 @@ msgstr "верзија PHP-a" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8874,8 +8869,8 @@ msgstr "" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 #, fuzzy #| msgid "" -#| "ys the contents of the field as-is, without running it through " -#| "ecialchars(). That is, the field is assumed to contain valid HTML." +#| "ys the contents of the field as-is, without running it through ecialchars" +#| "(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -9679,7 +9674,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Додатно" @@ -9854,7 +9849,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Персијски" @@ -10322,8 +10317,8 @@ msgstr "Преглед корисника" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " @@ -10338,57 +10333,275 @@ msgstr "Изабрани корисник није пронађен у табе msgid "You have added a new user." msgstr "Додали сте новог корисника." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у секунди" +msgstr[1] "у секунди" +msgstr[2] "у секунди" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "се користи" +msgstr[1] "се користи" +msgstr[2] "се користи" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Статистике реда" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Изабери све" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Врста упита" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Додај ново поље" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Уклони базу" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Изабери табеле" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Неисправан назив табеле" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Додај новог корисника" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL упит" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +msgid "Start Monitor" +msgstr "Статус" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Освежи" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Додај/обриши колону" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL резултат" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Генерисао" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Датотеке са подацима" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Статус" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Укупно" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Запамти SQL-упит" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Назив" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10410,10 +10623,6 @@ msgstr "Календар" msgid "Bookmark this SQL query:" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замени постојеће запамћене упите истог имена" @@ -10557,7 +10766,7 @@ msgstr "Провери табеле које имају прекорачења" msgid "Sort" msgstr "Сортирање" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10729,7 +10938,7 @@ msgstr "Ефективне" msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10901,7 +11110,7 @@ msgstr "Грешка у ZIP архиви:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Измене су сачуване" @@ -10959,7 +11168,7 @@ msgstr "Промени мало/велико" msgid "Toggle relation lines" msgstr "Да одаберете релацију, кликните :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Извоз/увоз координата за PDF схему" @@ -11034,52 +11243,52 @@ msgstr "Направи" msgid "Active options" msgstr "Опције табеле" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Табела %s је одбачена" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "страна" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз датотека" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Направи нови кључ" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Име корисника" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "препоручено" @@ -11109,7 +11318,7 @@ msgstr "Додата интерна релација" msgid "Relation deleted" msgstr "Релација обрисана" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Грешка при снимању координата за Дизајнер." @@ -11539,209 +11748,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Додај ново поље" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Уклони базу" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Изабери табеле" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Неисправан назив табеле" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Додај новог корисника" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL упит" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Статистике реда" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Изабери све" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Врста упита" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "у секунди" -msgstr[1] "у секунди" -msgstr[2] "у секунди" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "се користи" -msgstr[1] "се користи" -msgstr[2] "се користи" - -#: server_status_monitor.php:674 -#, fuzzy -msgid "Start Monitor" -msgstr "Статус" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Освежи" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Додај/обриши колону" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12751,8 +12757,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12795,49 +12801,39 @@ msgstr "" msgid "Wrong data" msgstr "База не постоји" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Направљен маркер %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Запамти SQL-упит" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Назив" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13080,148 +13076,148 @@ msgstr "Изабери поља за приказ" msgid "No column selected." msgstr "Нема одабраних редова" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозвољава уметање и замену података." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "База не постоји" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Подаци" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Тип извоза" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Направи релацију" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Направи релацију" @@ -13602,8 +13598,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13737,8 +13733,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/sr@latin.po b/po/sr@latin.po index b038148d3b..c8d2616763 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-01-10 13:37+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) \n" -"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Pretraživanje" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Pretraživanje" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -110,7 +110,7 @@ msgstr "" "Datoteka %s nije dostupna na ovom sistemu, molimo vas posetite www." "phpmyadmin.net za više informacija." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." @@ -140,7 +140,7 @@ msgstr "Komentari tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolona" @@ -163,7 +163,7 @@ msgstr "Kolona" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tip" @@ -180,7 +180,7 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -195,7 +195,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Podrazumevano" @@ -237,9 +237,9 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -264,9 +264,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Da" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -401,7 +401,7 @@ msgstr "Praćene tabele" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Baza podataka" @@ -409,17 +409,17 @@ msgstr "Baza podataka" msgid "Last version" msgstr "Poslednja verzija" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Kreirano" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Ažurirano" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -432,7 +432,7 @@ msgstr "Status" msgid "Action" msgstr "Akcija" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Prikaži" @@ -448,11 +448,11 @@ msgstr "Obriši podatke o praćenju za ovu tabelu" msgid "Drop" msgstr "Odbaci" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "neaktivno" @@ -460,11 +460,11 @@ msgstr "neaktivno" msgid "Versions" msgstr "Verzije" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Izveštaj o praćenju" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snimak strukture" @@ -622,14 +622,14 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " -"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" +"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -674,7 +674,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" @@ -701,7 +701,7 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti da završi ovaj uvoz osim ako ne " "povećate vremenska ograničenja u PHP-u." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -893,8 +893,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Skladište konfiguracije za phpMyAdmin nije kompletno konfigurisano, neke " -"dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde" -"%s." +"dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde%" +"s." #: index.php:521 #, php-format @@ -912,7 +912,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -921,7 +921,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da izvršite \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -1006,8 +1006,8 @@ msgstr "Ponovono učitavanje prava pristupa" msgid "Removing Selected Users" msgstr "Uklanjanje izabranih korisnika" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Zatvori" @@ -1135,13 +1135,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1180,7 +1180,7 @@ msgid "Traffic" msgstr "Saobraćaj" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Podešavanja" @@ -1200,13 +1200,14 @@ msgstr "Dodaj grafikon na grid" msgid "Please add at least one variable to the series" msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "nema" @@ -1306,7 +1307,7 @@ msgstr "Izmeni podešavanja" msgid "Current settings" msgstr "Trenutna podešavanja" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Naslov grafikona" @@ -1392,7 +1393,7 @@ msgstr "Objasni izlaz" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Vreme" @@ -1490,7 +1491,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1547,7 +1548,7 @@ msgid "Cancel" msgstr "Otkaži" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Učitavanje" @@ -1697,7 +1698,7 @@ msgstr "Sakrij okvir sa upitima" msgid "Show query box" msgstr "Prikažiokvir sa upitima" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1710,7 +1711,7 @@ msgstr "Promeni" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1795,7 +1796,7 @@ msgstr "Sadržaj tačke podataka" msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopiraj" @@ -1811,7 +1812,7 @@ msgstr "Linija teksta" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometrija" @@ -2306,33 +2307,33 @@ msgstr "po satu" msgid "per day" msgstr "po danu" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Postojeću konfiguracionu datoteku (%s) nije moguće pročitati." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Pogrešno podešena prava pristupa na konfiguracionoj datoteci, ne bi trebala " "da bude svima dostupna za pisanje!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Veličina fonta" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Rastući" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2489,14 +2490,14 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Obriši rezultate pretrage za %s tabelu?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Obriši" @@ -2587,17 +2588,11 @@ msgstr "horizontalnom (rotirana zaglavlja)" msgid "vertical" msgstr "vertikalnom" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši upamćen upit" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sortiraj po ključu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2624,91 +2619,91 @@ msgstr "Sortiraj po ključu" msgid "Options" msgstr "Opcije" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Parcijalni tekstovi" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Potpuni tekstovi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Relacioni ključ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Relacioni prikaz kolone" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Prikaži binarni sadržaj kao HEX vrednosti" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Sakrij transformacije pregledača" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "u upitu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte " -"%sdokumentaciju%s." +"Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte %" +"sdokumentaciju%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2717,8 +2712,8 @@ msgstr "Upit je trajao %01.4f sekundi" msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2729,45 +2724,45 @@ msgstr "Označeno:" msgid "Check All" msgstr "Označi sve" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Napravi pogled" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Za štampu" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2850,38 +2845,38 @@ msgstr "Indeks nije definisan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakovano" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Sortiranje" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentar" @@ -2923,7 +2918,7 @@ msgstr "Pogled" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -3071,15 +3066,15 @@ msgstr[2] "%1$d redova umetnuto." msgid "Error while creating PDF:" msgstr "Greška prilikom kreiranja PDF-a:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nije moguće sačuvati poslednju tabelu" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Skorašnje pristupane tabele" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nema skorašnje pristupanih tabela" @@ -3254,8 +3249,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Neuspelo brisanje podešavanja korisničkog interfejsa tabele (pogledajte " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Neuspelo brisanje podešavanja korisničkog interfejsa tabele (pogledajte $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1603 #, php-format @@ -3325,7 +3320,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" @@ -3424,14 +3419,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3676,7 +3671,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3737,7 +3732,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "u liniji" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilisanje" @@ -4219,8 +4214,8 @@ msgstr "Uređenje CHAR kolona" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4627,9 +4622,8 @@ 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 "" -"Redosled sortiranja stavki u padajućoj listi sa stranim ključevima; " -"[kbd]content[/kbd] je referencirani podatak; [kbd]id[/kbd] je vrednost " -"ključa" +"Redosled sortiranja stavki u padajućoj listi sa stranim ključevima; [kbd]" +"content[/kbd] je referencirani podatak; [kbd]id[/kbd] je vrednost ključa" #: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" @@ -4775,9 +4769,8 @@ msgstr "Naslovi strana" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5202,8 +5195,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Broj bajtova koji je dozvoljen da skript zauzme, primer [kbd]32M[/kbd] " -"([kbd]0[/kbd] nema ograničenja)" +"Broj bajtova koji je dozvoljen da skript zauzme, primer [kbd]32M[/kbd] ([kbd]" +"0[/kbd] nema ograničenja)" #: libraries/config/messages.inc.php:296 msgid "Memory limit" @@ -5587,8 +5580,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5783,8 +5776,8 @@ msgstr "Skorašnje korišćena tabela" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5801,8 +5794,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5899,8 +5892,8 @@ msgstr "Praćenje komandi" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5919,8 +5912,8 @@ msgstr "Automatski kreiraj verzije" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6109,8 +6102,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Korisničko ime" @@ -6511,7 +6504,7 @@ msgstr "Baza(e):" msgid "Table(s):" msgstr "Tabela(e):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Redovi:" @@ -6560,13 +6553,13 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se interpretira korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " -"transformacije: %3$s. Preostali tekst će ostati kako jeste. Čogledaj %4$sFAQ" -"%5$s za detalje." +"transformacije: %3$s. Preostali tekst će ostati kako jeste. Čogledaj %4$sFAQ%" +"5$s za detalje." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7087,8 +7080,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7104,7 +7097,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -7224,11 +7217,11 @@ msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7279,7 +7272,7 @@ msgstr "Zameni prefix tabele" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7615,17 +7608,17 @@ msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura i podaci" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podaci" @@ -7788,8 +7781,8 @@ msgstr "Dobrodošli na %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -8049,7 +8042,7 @@ msgstr "Stavi imena kolona u prvi red" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8057,7 +8050,7 @@ msgstr "Domaćin" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8075,7 +8068,7 @@ msgstr "verzija PHP-a" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9178,7 +9171,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9343,7 +9336,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verzija" @@ -9799,8 +9792,8 @@ msgstr "Pregled korisnika" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " @@ -9815,63 +9808,262 @@ msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundi" +msgstr[2] "%d sekunde" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuta" +msgstr[2] "%d minuta" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistike loga" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Izaberi vremenski opseg:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizator upita" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Dodaj grafikon" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Unapred podesi grafikon" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Izaberite seriju podataka:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ili unesite ime promenljive:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Dodaj ovu seriju podataka" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serije podataka u grafikonu:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Pokreni monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Omogući naglašavanje" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Interval osvežavanja" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Kolone grafikona" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generisao" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Datoteke sa podacima" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostalo" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Početak" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Ukupno vreme:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vreme" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zatvori" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vreme" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Zapamti SQL-upit" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Naziv" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9892,10 +10084,6 @@ msgstr "Obriši" msgid "Bookmark this SQL query:" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zameni postojeće zapamćene upite istog imena" @@ -10034,7 +10222,7 @@ msgstr "Proveri tabele koje imaju prekoračenja" msgid "Sort" msgstr "Sortiranje" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ništa" @@ -10194,7 +10382,7 @@ msgstr "Efektivne" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je uspešno izmenjena" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Greška u upitu" @@ -10350,7 +10538,7 @@ msgstr "Greška u ZIP arhivi:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" @@ -10406,7 +10594,7 @@ msgstr "Promeni malo/veliko" msgid "Toggle relation lines" msgstr "Zameni linije relacije" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Izvoz/uvoz koordinata za PDF shemu" @@ -10466,43 +10654,43 @@ msgstr "Sakupi" msgid "Active options" msgstr "Aktivne opcije" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Strana je kreirana" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Strana" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Uvezi sa izabrane strane" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Izvezi na izabranu stranu" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Kreiraj stranu i izvezi na nju" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Ime nove strane: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "preporučeno" @@ -10532,7 +10720,7 @@ msgstr "Dodata interna relacija" msgid "Relation deleted" msgstr "Relacija obrisana" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Greška pri snimanju koordinata za Dizajner." @@ -10944,190 +11132,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Dodaj grafikon" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Unapred podesi grafikon" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Izaberite seriju podataka:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ili unesite ime promenljive:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Dodaj ovu seriju podataka" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serije podataka u grafikonu:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistike loga" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Izaberi vremenski opseg:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizator upita" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundi" -msgstr[2] "%d sekunde" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuta" -msgstr[2] "%d minuta" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Pokreni monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Omogući naglašavanje" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Interval osvežavanja" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Kolone grafikona" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12121,8 +12125,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12163,26 +12167,26 @@ msgstr "" msgid "Wrong data" msgstr "Pogrešan podatak" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Napravljen marker %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validiran SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12195,21 +12199,11 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Zapamti SQL-upit" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Naziv" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12431,145 +12425,145 @@ msgstr "Izaberi kolonu za prikaz" msgid "No column selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Praćenje je aktivno." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Praćenje je aktivno." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Obriši red sa podacima o praćenju iz izveštaja" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nema podataka" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Izvezi kao %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Napravi relaciju" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Kreiraj verziju" @@ -12924,8 +12918,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13047,8 +13041,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13733,6 +13727,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je postavljeno na 0" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izvrši upamćen upit" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -13923,9 +13922,8 @@ msgstr "concurrent_insert je postavljeno na 0" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Omogućavanje ovoga dozvoljava da stranica koja se nalazi na drugom domenu " -#~ "pozove phpMyAdmin unutar frame-a, i predstavlja potencijalni " -#~ "[strong]bezbednosni problem[/strong] dozvoljavajući cross-frame scripting " -#~ "napade" +#~ "pozove phpMyAdmin unutar frame-a, i predstavlja potencijalni [strong]" +#~ "bezbednosni problem[/strong] dozvoljavajući cross-frame scripting napade" #~ msgid "Allow third party framing" #~ msgstr "Dozvoli okvire treće strane" diff --git a/po/sv.po b/po/sv.po index c20164adc4..ecabf48ca6 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-04 09:56+0200\n" "Last-Translator: Anders Jonsson \n" "Language-Team: Swedish \n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Sök:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Sök:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Kör" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nyckelnamn" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beskrivning" @@ -107,7 +107,7 @@ msgstr "" "Filen %s är inte tillgänglig i detta system, gå till www.phpmyadmin.net för " "mer information." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." @@ -135,7 +135,7 @@ msgstr "Tabellkommentarer:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolumn" @@ -158,7 +158,7 @@ msgstr "Kolumn" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -175,7 +175,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -190,7 +190,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standardvärde" @@ -232,9 +232,9 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nej" @@ -259,9 +259,9 @@ msgstr "Nej" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -312,7 +312,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabell" @@ -388,7 +388,7 @@ msgstr "Spårade tabeller" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databas" @@ -396,17 +396,17 @@ msgstr "Databas" msgid "Last version" msgstr "Senaste versionen" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Skapad" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Uppdaterad" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -419,7 +419,7 @@ msgstr "Status" msgid "Action" msgstr "Åtgärd" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Visa" @@ -435,11 +435,11 @@ msgstr "Ta bort spårning för denna tabell" msgid "Drop" msgstr "Radera" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "inaktiv" @@ -447,11 +447,11 @@ msgstr "inaktiv" msgid "Versions" msgstr "Versioner" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Spårningsrapport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Ögonblicksbild på strukturen" @@ -599,8 +599,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Du försökte ladda upp en fil som är för stor. Se %sdocumentation%s för att " "gå runt denna begränsning." @@ -649,7 +649,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Kunde inte läsa in tillägg för import, kontrollera din installation!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" @@ -676,7 +676,7 @@ msgstr "" "att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s " "tidsbegränsningar." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -871,8 +871,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " -"%s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" +"s. Detta kan orsaka oförutsägbara beteenden." #: index.php:546 #, php-format @@ -881,7 +881,7 @@ msgid "" "issues." msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-satser är inaktiverade." @@ -890,7 +890,7 @@ msgstr "\"DROP DATABASE\"-satser är inaktiverade." msgid "Do you really want to execute \"%s\"?" msgstr "Vill du verkligen exekvera \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Du är på väg att RADERA en hel databas!" @@ -974,8 +974,8 @@ msgstr "Ladda om privilegier" msgid "Removing Selected Users" msgstr "Tar bort valda användare" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Stäng" @@ -1102,13 +1102,13 @@ msgstr "bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "kB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "Mb" @@ -1147,7 +1147,7 @@ msgid "Traffic" msgstr "Trafik" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Inställningar" @@ -1167,13 +1167,14 @@ msgstr "Addera diagrammet till rutnätet" msgid "Please add at least one variable to the series" msgstr "Lägg till minst en variabel till serien" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Inget" @@ -1273,7 +1274,7 @@ msgstr "Ändra inställningar" msgid "Current settings" msgstr "Nuvarande inställningar" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagramtitel" @@ -1358,7 +1359,7 @@ msgstr "Förklara utdata" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tid" @@ -1455,7 +1456,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" @@ -1512,7 +1513,7 @@ msgid "Cancel" msgstr "Avbryt" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laddar" @@ -1662,7 +1663,7 @@ msgstr "Göm sök-rutan" msgid "Show query box" msgstr "Visa frågerutan" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1675,7 +1676,7 @@ msgstr "Redigera" msgid "No rows selected" msgstr "Inga rader valda" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1758,7 +1759,7 @@ msgstr "Innehåll för datapunkt" msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopiera" @@ -1774,7 +1775,7 @@ msgstr "Linestring" msgid "Polygon" msgstr "Polygon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometri" @@ -2258,32 +2259,32 @@ msgstr "per timme" msgid "per day" msgstr "per dag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Befintlig konfigurationsfil (%s) är inte läsbar." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Fel behörigheter på konfigurationsfilen, bör inte vara \"world\" skrivbar!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Teckenstorlek" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Stigande" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2425,14 +2426,14 @@ msgstr "Bläddra" msgid "Delete the matches for the %s table?" msgstr "Ta bort resultat som matchar %s tabellen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Radera" @@ -2519,16 +2520,11 @@ msgstr "horisontell (roterade rubriker)" msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Rubriker var %s rad" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Sortera efter nyckel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2555,89 +2551,89 @@ msgstr "Sortera efter nyckel" msgid "Options" msgstr "Alternativ" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Förkortade texter" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Kompletta texter" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Besläktad nyckel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Kolumn för besläktad nyckel" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Visa binärt innehåll" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Visa binärt innehåll som HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Dölj webbläsarens transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Välkänd text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Välkänd binär" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Döda" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kan vara ungefärligt. Se [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "i fråga" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Visar rader" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2646,8 +2642,8 @@ msgstr "Frågan tog %01.4f sek" msgid "With selected:" msgstr "Med markerade:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2658,45 +2654,45 @@ msgstr "Med markerade:" msgid "Check All" msgstr "Markera alla" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportera" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Skapa vy" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig version (med fullständiga texter)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Visa diagram" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Visualisera GIS-data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Länken hittades inte" @@ -2774,38 +2770,38 @@ msgstr "Inga index är definierade!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Packad" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Kollationering" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2847,7 +2843,7 @@ msgstr "Vy" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -2992,15 +2988,15 @@ msgstr[1] "%1$d rader infogade." msgid "Error while creating PDF:" msgstr "Fel vid skapande av PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Kunde inte spara den senaste tabellen" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "De senaste tabellerna" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Det finns inga nya tabeller" @@ -3242,7 +3238,7 @@ msgid "Maximum rows to plot" msgstr "Maximalt antal rader att visa" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" @@ -3353,16 +3349,16 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, " "0, och 1.175494351E-38 till 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Ett dubbel-precision flyttal. Tillåtna värden är: 1.7976931348623157E+308 " @@ -3643,7 +3639,7 @@ msgstr "En uppräkning, vald från listan av definierade värden" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL-fråga:" @@ -3702,7 +3698,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Infogad" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilering" @@ -4173,8 +4169,8 @@ msgstr "Redigera CHAR-kolumn" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Använd användarvänlig editor för att redigera SQL-frågor ([a@http://" "codemirror.net/]CodeMirror[/a]) med syntaxmarkering och radnummer" @@ -4711,9 +4707,8 @@ msgstr "Sidtitlar" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Ange webbläsarens namnlisttext. Se [doc@cfg_TitleTable]dokumentationen[/doc] " "för magiska strängar som kan användas för att få speciella värden." @@ -5503,8 +5498,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Lämna tomt för att stänga av [a@http://wiki.phpmyadmin.net/pma/" -"bookmark]bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]" +"Lämna tomt för att stänga av [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5512,11 +5507,11 @@ msgstr "Tabell för bokmärken" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: " -"[kbd]pma_column_info[/kbd]" +"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: [kbd]" +"pma_column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5548,8 +5543,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "En speciell MySQL-användare konfigurerad med begränsade rättigheter, mer " -"information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/" -"controluser]wiki[/a]" +"information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" +"[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5632,8 +5627,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Lämna blankt för att stänga av stöd för SQL-frågehistorik, förslag: " -"[kbd]pma__history[/kbd]" +"Lämna blankt för att stänga av stöd för SQL-frågehistorik, förslag: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5697,8 +5692,8 @@ msgstr "Lösenord för config auth" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Lämna blankt för att stänga av stöd för PDF-schema, förslag: " -"[kbd]pma__pdf_pages[/kbd]" +"Lämna blankt för att stänga av stöd för PDF-schema, förslag: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5740,11 +5735,11 @@ msgstr "Nyligen använd tabell" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Lämna tomt för avstängt stöd för [a@http://wiki.phpmyadmin.net/pma/" -"relation]relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]" +"Lämna tomt för avstängt stöd för [a@http://wiki.phpmyadmin.net/pma/relation]" +"relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5760,8 +5755,8 @@ msgstr "SHOW DATABASES-kommando" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] för ett exempel" @@ -5820,8 +5815,8 @@ msgid "" "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" "Lämna tomt för att stänga av \"ihållande\" tabellers " -"användargränssnittspreferenser som sparas över sessioner, förslag: " -"[kbd]pma__table_uiprefs[/kbd]" +"användargränssnittspreferenser som sparas över sessioner, förslag: [kbd]" +"pma__table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -5875,11 +5870,11 @@ msgstr "Kommandon att spåra" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"Lämna tomt för avstängt stöd för SQL-frågespårning, förslag: " -"[kbd]pma__tracking[/kbd]" +"Lämna tomt för avstängt stöd för SQL-frågespårning, förslag: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5899,8 +5894,8 @@ msgstr "Skapa versioner automatiskt" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Lämna tomt för att stänga av lagring av användarpreferenser i databasen, " "förslag: [kbd]pma__userconfig[/kbd]" @@ -6026,8 +6021,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Visar länk till resultatet av [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Visar länk till resultatet av [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -6106,11 +6101,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Om du har ett eget användarnamn, ange det här (standardnamn är " -"[kbd]anonymous[/kbd])" +"Om du har ett eget användarnamn, ange det här (standardnamn är [kbd]anonymous" +"[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Användarnamn" @@ -6515,7 +6510,7 @@ msgstr "Databas(er):" msgid "Table(s):" msgstr "Tabell(er):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rader:" @@ -6564,8 +6559,8 @@ msgstr ", @TABLE@ kommer bli tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -7116,11 +7111,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" -"%s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" +"s." #: libraries/engines/pbxt.lib.php:133 msgid "Related Links" @@ -7135,7 +7130,7 @@ msgid "No data found for GIS visualization." msgstr "Inga data finns för GIS-visualisering." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." @@ -7255,11 +7250,11 @@ msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad-id: %1$d" @@ -7304,7 +7299,7 @@ msgstr "Lägg till tabellprefix:" msgid "Add prefix" msgstr "Lägg till prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Vill du verkligen exekvera följande fråga?" @@ -7631,17 +7626,17 @@ msgid "Drop the database (DROP)" msgstr "Tag bort databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Enbart struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur och data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Enbart data" @@ -7802,11 +7797,11 @@ msgstr "Välkommen till %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " -"%1$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" +"$suppsättningsskript%2$s för att skapa denna." #: libraries/plugins/auth/AuthenticationConfig.class.php:122 msgid "" @@ -8053,13 +8048,13 @@ msgstr "Sätt kolumnnamn på första raden:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Värd:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Tid vid skapande:" @@ -8073,7 +8068,7 @@ msgstr "PHP-version:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Databas:" @@ -8219,8 +8214,8 @@ msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -"Dumpa binära kolumner i hexadecimal notation (t.ex. \"abc\" blir " -"0x616263)" +"Dumpa binära kolumner i hexadecimal notation (t.ex. \"abc\" blir 0x616263)" +"" #: libraries/plugins/export/ExportSql.class.php:403 msgid "" @@ -9197,7 +9192,7 @@ msgstr "Attribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9360,7 +9355,7 @@ msgid "Library" msgstr "Bibliotek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9818,8 +9813,8 @@ msgstr "Användaröversikt" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas behörigheter direkt från MySQL's " "behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de " @@ -9834,57 +9829,279 @@ msgstr "Den valda användaren kunde inte hittas i privilegietabellen." msgid "You have added a new user." msgstr "Du har lagt till en ny användare." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekund" +msgstr[1] "%d sekunder" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuter" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logga statistik" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Välj tidsintervall:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Hämta endast SELECT-, INSERT-, UPDATE- och DELETE-kommandon" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Ta bort variabeldata i INSERT-kommandon för bättre gruppering" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Välj vilken logg du vill att statistiken ska genereras från." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultaten grupperas efter frågetext." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Frågeanalyserare" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Övervaka instruktioner" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin Monitor hjälpa dig optimera serverkonfigurationen och spåra " +"tidsintensiva frågor. För det senare måste du ställa log_output till \"TABLE" +"\" och ha antingen slow_query_log eller general_log aktiverat. Observera att " +"general_log producerar mycket data och ökar lasten på servern med upp till " +"15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Tyvärr, din databasserver stöder inte loggning till tabeller vilket är ett " +"krav för att analysera databasloggar med phpMyAdmin. Loggning till tabeller " +"stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda serverns " +"diagramfunktioner." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Använda monitorn:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Din webbläsare kommer uppdatera alla diagram som visas med jämna mellanrum. " +"Du kan lägga till diagram och ändra uppdateringsfrekvensen under " +"\"Inställningar\", eller ta bort diagram med kugghjulsikonen på respektive " +"diagram." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"För att visa sökfrågor från loggarna, välj önskad tidsperiod på något " +"diagram genom att hålla ner vänster musknapp och dra över diagrammet. När " +"bekräftat kommer detta ladda en tabell över grupperade frågor, där kan du " +"klicka på de förekommande SELECT-satserna för att ytterligare analysera " +"dessa." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Vänligen notera:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Att aktivera \"general_log\" kan öka belastningen på servern med 5-15%. Var " +"också medveten om att generera statistik från loggarna är en " +"belastningsintensiv uppgift, så det är klokt att välja en kort tidsperiod " +"samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " +"inte behövs längre." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Lägg till diagram" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Förinställt diagram" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Statusvariabler" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Välj serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Vanligtvis övervakade" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "eller skriv variabelnamn:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Visa som skillnadsvärde" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Tillämpa en dividend" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Lägg till enhet till datavärdena" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Lägg till denna serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Rensa serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serie i diagram:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Starta Monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruktioner/Setup" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Klar med ändring/redigering av diagram" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Aktivera framhävning" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Uppdateringsfrekvens" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Visa kolumner" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagramarrangemang" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Arrangemanget av diagrammen lagras lokalt i webbläsaren. Du kanske vill " +"exportera den om du har en komplicerad inställning." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Återställ till standardinställningen" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Genererad av:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Detaljerad profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Annan" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Start" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total tid:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "Tid" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Stäng" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tid" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Skapa bokmärke för den här SQL-frågan" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etikett:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Låt alla användare få tillgång till detta bokmärke" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9903,10 +10120,6 @@ msgstr "Rensa" msgid "Bookmark this SQL query:" msgstr "Skapa bokmärke för den här SQL-frågan:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Låt alla användare få tillgång till detta bokmärke" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Ersätt befintligt bokmärke med samma namn" @@ -10046,7 +10259,7 @@ msgstr "Kontrollera tabeller med overhead" msgid "Sort" msgstr "Sortera" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Inget" @@ -10200,7 +10413,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har ändrats" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Sökningsfel" @@ -10351,7 +10564,7 @@ msgstr "Fel i ZIP-arkiv:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Oåterkalleligt fel: Navigering kan endast nås via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" @@ -10407,7 +10620,7 @@ msgstr "Växla liten/stor" msgid "Toggle relation lines" msgstr "Växla mellan relaterade linjer" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importera/exportera koordinater för PDF-schema" @@ -10465,39 +10678,39 @@ msgstr "Aggregera" msgid "Active options" msgstr "Aktiva alternativ" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Sidan har skapats" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sidan gick inte att skapa" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Sida:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importera från vald sida" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportera till vald sida" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Skapa en sida och exportera till den" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nytt sidnamn: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exportera /Importera till skala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "rekommenderad" @@ -10525,7 +10738,7 @@ msgstr "Intern relation tillagd" msgid "Relation deleted" msgstr "Relation borttagen" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fel vid sparande av koordinater för Designer." @@ -10968,215 +11181,6 @@ msgstr "" "taget, iaktta eller benchmarka databasen, och ångra den förändring om det " "inte fanns någon tydligt mätbar förbättring." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Övervaka instruktioner" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin Monitor hjälpa dig optimera serverkonfigurationen och spåra " -"tidsintensiva frågor. För det senare måste du ställa log_output till \"TABLE" -"\" och ha antingen slow_query_log eller general_log aktiverat. Observera att " -"general_log producerar mycket data och ökar lasten på servern med upp till " -"15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Tyvärr, din databasserver stöder inte loggning till tabeller vilket är ett " -"krav för att analysera databasloggar med phpMyAdmin. Loggning till tabeller " -"stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda serverns " -"diagramfunktioner." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Använda monitorn:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Din webbläsare kommer uppdatera alla diagram som visas med jämna mellanrum. " -"Du kan lägga till diagram och ändra uppdateringsfrekvensen under " -"\"Inställningar\", eller ta bort diagram med kugghjulsikonen på respektive " -"diagram." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"För att visa sökfrågor från loggarna, välj önskad tidsperiod på något " -"diagram genom att hålla ner vänster musknapp och dra över diagrammet. När " -"bekräftat kommer detta ladda en tabell över grupperade frågor, där kan du " -"klicka på de förekommande SELECT-satserna för att ytterligare analysera " -"dessa." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Vänligen notera:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Att aktivera \"general_log\" kan öka belastningen på servern med 5-15%. Var " -"också medveten om att generera statistik från loggarna är en " -"belastningsintensiv uppgift, så det är klokt att välja en kort tidsperiod " -"samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " -"inte behövs längre." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Lägg till diagram" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Förinställt diagram" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Statusvariabler" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Välj serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Vanligtvis övervakade" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "eller skriv variabelnamn:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Visa som skillnadsvärde" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Tillämpa en dividend" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Lägg till enhet till datavärdena" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Lägg till denna serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Rensa serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serie i diagram:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logga statistik" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Välj tidsintervall:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Hämta endast SELECT-, INSERT-, UPDATE- och DELETE-kommandon" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Ta bort variabeldata i INSERT-kommandon för bättre gruppering" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Välj vilken logg du vill att statistiken ska genereras från." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultaten grupperas efter frågetext." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Frågeanalyserare" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekund" -msgstr[1] "%d sekunder" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuter" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Starta Monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruktioner/Setup" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Klar med ändring/redigering av diagram" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Aktivera framhävning" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Uppdateringsfrekvens" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Visa kolumner" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagramarrangemang" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Arrangemanget av diagrammen lagras lokalt i webbläsaren. Du kanske vill " -"exportera den om du har en komplicerad inställning." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Återställ till standardinställningen" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12198,8 +12202,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att det är nödvändigt, använd extra skyddsinställningar - " -"%shost autentisering%s-inställningar och %strusted proxies listan%s. Dock " +"Om du känner att det är nödvändigt, använd extra skyddsinställningar - %" +"shost autentisering%s-inställningar och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP som " "tusentals användare, inklusive dig, är anslutna till." @@ -12209,8 +12213,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Du valde [kbd]config[/kbd]-autentisering och inkluderade användarnamn och " "lösenord för autoinloggning, vilket inte är en önskvärd inställning för " @@ -12260,24 +12264,24 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." msgid "Wrong data" msgstr "Felaktigt data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bokmärke ej skapat" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12289,19 +12293,11 @@ msgstr "" "Denna tabell innehåller ingen unik kolumn. Funktionerna rutnätsredigera, " "kryssruta, redigera, kopiera och radera är inte tillgängliga." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Skapa bokmärke för den här SQL-frågan" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etikett:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Ingen data att visa" @@ -12507,31 +12503,31 @@ msgstr "Välj kolumn att visa:" msgid "No column selected." msgstr "Ingen kolumn vald." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Spårning av rapport för tabell `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s är skapad, spårning för %2$s är aktiv." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Spårning av %1$s deaktiverades vid version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Spårning av %1$s aktiverades vid version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-satser exekverade." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12539,113 +12535,113 @@ msgstr "" "Du kan dumpa genom att skapa och använda en tillfällig databas. Se till att " "du har behörighet att göra det." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kommentera bort dessa två rader om du inte behöver dem." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-satser exporteras. Kopiera dump eller verkställ." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s ögonblicksbild (SQL-kod)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Spårningsdata har tagits bort" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Spårningsdata manipulation har tagits bort" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Spårning av uppgifter" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Visa %1$s med datum från %2$s till %3$s av användare %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Ta bort spårning för denna rapport" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Inget data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Data definition redogörelse" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Data manipulation redogörelse" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-dump (filnedladdning)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Denna alternativ kommer att ersätta din tabell och ingående data." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-exekvering" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportera som %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Visa versioner" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Avaktivera spårning för %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktivera nu" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktivera spårning för %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktivera nu" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Skapa version %1$s av %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Spåra dessa datadefinitioners kommandon:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Spåra dessa datahanteringskommandon:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Skapa version" @@ -13037,8 +13033,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Det nuvarande förhållandet mellan ledigt frågecacheminne den totala fråge " "cache-storlek är %s%%. Det bör vara över 80%%" @@ -13189,8 +13185,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% av alla sorteringar orsakar tillfälliga tabeller, detta värde bör vara " "lägre än 10%%." @@ -13933,6 +13929,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Rubriker var %s rad" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14185,8 +14184,8 @@ msgstr "concurrent_insert är satt till 0" #~ "strong] allowing cross-frame scripting attacks" #~ msgstr "" #~ "Vid aktivering tillåts att en sida som ligger på en annan domän att " -#~ "anropa phpMyAdmin i en ram, vilket är en potentiell [strong] " -#~ "säkerhetshål[/strong] och tillåter mellan ramar scripting-angrepp" +#~ "anropa phpMyAdmin i en ram, vilket är en potentiell [strong] säkerhetshål" +#~ "[/strong] och tillåter mellan ramar scripting-angrepp" #~ msgid "Allow third party framing" #~ msgstr "Tillåt tredjeparts infogning" @@ -14222,14 +14221,14 @@ msgstr "concurrent_insert är satt till 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "När detta är satt till [kbd]nested[/kbd], används tabellens alias endast " -#~ "för att dela/stapla tabellerna enligt direktivet " -#~ "$cfg['LeftFrameTableSeparator'] , så endast mappen kallas för detta " -#~ "alias, tabellnamnet självt förblir oförändrat" +#~ "för att dela/stapla tabellerna enligt direktivet $cfg" +#~ "['LeftFrameTableSeparator'] , så endast mappen kallas för detta alias, " +#~ "tabellnamnet självt förblir oförändrat" #~ msgid "Display table comment instead of its name" #~ msgstr "Visa tabellkommentar istället för dess namn" @@ -14732,10 +14731,9 @@ msgstr "concurrent_insert är satt till 0" #~ msgstr "" #~ "phpMyAdmin kunde inte läsa din konfigurationsfil!
Detta kan inträffa " #~ "om PHP hittar ett fel i den eller om PHP inte hittar filen.
Anropa " -#~ "konfigurationsfilen direkt mha länken nedan och läs PHP:s " -#~ "felmeddelande(n) som du erhåller. I de flesta fall saknas ett " -#~ "citationstecken eller ett semikolon någonstans.
Om du får en tom " -#~ "sida är allt OK." +#~ "konfigurationsfilen direkt mha länken nedan och läs PHP:s felmeddelande" +#~ "(n) som du erhåller. I de flesta fall saknas ett citationstecken eller " +#~ "ett semikolon någonstans.
Om du får en tom sida är allt OK." #~ msgid "Dropping Event" #~ msgstr "Tar bort Händelse" @@ -14796,8 +14794,8 @@ msgstr "concurrent_insert är satt till 0" #~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ " #~ "6.29[/doc]" #~ msgstr "" -#~ "Resultatet av denna fråga kan inte användas för ett diagram. Se " -#~ "[doc@faq6-29]FAQ 6.29[/doc]" +#~ "Resultatet av denna fråga kan inte användas för ett diagram. Se [doc@faq6-" +#~ "29]FAQ 6.29[/doc]" #~ msgid "Title" #~ msgstr "Titel" diff --git a/po/ta.po b/po/ta.po index 3db7ada808..20696d9fc6 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 09:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil \n" -"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -49,7 +49,7 @@ msgid "Search:" msgstr "தேடு" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -78,21 +78,21 @@ msgstr "தேடு" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "செல்" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "முக்கியபெயர்" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "விளக்கம்" @@ -109,7 +109,7 @@ msgid "" "for more information." msgstr "%s கோப்பு இந்த அமைப்பில் இல்லை, மேலும் தகவலுக்கு www.phpmyadmin.net செல்லுங்கள்" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது" @@ -139,7 +139,7 @@ msgstr "அட்டவணைக் கருத்துரைகள்" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "நிரல்" @@ -162,7 +162,7 @@ msgstr "நிரல்" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "வகை" @@ -179,7 +179,7 @@ msgstr "வகை" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "வெற்று" @@ -194,7 +194,7 @@ msgstr "வெற்று" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "முன்னிருப்பு" @@ -236,9 +236,9 @@ msgstr "கருத்துரைகள்" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "இல்லை" @@ -263,9 +263,9 @@ msgstr "இல்லை" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "ஆம்" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "அட்டவணை" @@ -401,7 +401,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "தரவுத்தளம்" @@ -409,17 +409,17 @@ msgstr "தரவுத்தளம்" msgid "Last version" msgstr "இறுதி பதிப்பு" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "உருவாக்கப்பட்டது" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "புதுப்பிக்கப்பட்டது" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "தகுநிலை" @@ -432,7 +432,7 @@ msgstr "தகுநிலை" msgid "Action" msgstr "செயல்" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "காண்பி" @@ -448,11 +448,11 @@ msgstr "" msgid "Drop" msgstr "அழி" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "செயற்படு" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "செயற்பாடற்ற" @@ -460,11 +460,11 @@ msgstr "செயற்பாடற்ற" msgid "Versions" msgstr "பதிப்புக்கள்" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -627,8 +627,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -668,7 +668,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -690,7 +690,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -886,7 +886,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -895,7 +895,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -984,8 +984,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "மூடு" @@ -1108,13 +1108,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1155,7 +1155,7 @@ msgid "Traffic" msgstr "போக்குவரத்து" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "அமைப்புகள்" @@ -1175,13 +1175,14 @@ msgstr "வரைபடத்தை கட்டத்தில் சேர்" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "எதுவுமில்லை" @@ -1274,7 +1275,7 @@ msgstr "அமைப்புக்களை மாற்று" msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "வரைபடத் தலைப்பு" @@ -1363,7 +1364,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1468,7 +1469,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "இறக்குமதி" @@ -1527,7 +1528,7 @@ msgid "Cancel" msgstr "விலக்கு" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "ஏற்றப்படுகிறது" @@ -1683,7 +1684,7 @@ msgstr "வினவல் பெட்டியை மறை" msgid "Show query box" msgstr "வினவல் பெட்டியை காண்பி" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1696,7 +1697,7 @@ msgstr "தொகு" msgid "No rows selected" msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1782,7 +1783,7 @@ msgstr "" msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "நகல்" @@ -1798,7 +1799,7 @@ msgstr "" msgid "Polygon" msgstr "பல்கோணி" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "கேத்திர கணிதம்" @@ -2292,31 +2293,31 @@ msgstr "ஒரு மணி நேரத்திற்கு" msgid "per day" msgstr "ஒரு நாளைக்கு" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "எழுத்துரு அளவு" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ஏறுவரிசை" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2470,14 +2471,14 @@ msgstr "உலாவு" msgid "Delete the matches for the %s table?" msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "அழி" @@ -2570,16 +2571,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2606,89 +2602,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2697,8 +2693,8 @@ msgstr "" msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2709,47 +2705,47 @@ msgstr "உடன் தெரிவுசெய்யப்பட்டது:" msgid "Check All" msgstr "அனைத்தையும் தெரி" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ஏற்றுமதி" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "அச்சுப் பார்வை" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Add into comments" msgid "Display chart" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2824,38 +2820,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "சுட்டுகள்" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "தனித்தன்மை" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "பொதிக்கப்பட்டது" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "அடுக்கு" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "கருத்துரை" @@ -2895,7 +2891,7 @@ msgstr "நோக்கு" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "கட்டமைப்பு" @@ -3042,15 +3038,15 @@ msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்ட msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "சமீபத்திய அட்டவணைகள்" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3292,7 +3288,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3389,14 +3385,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3640,7 +3636,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3701,7 +3697,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "உள்வரிசை" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4162,8 +4158,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4690,9 +4686,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5437,8 +5432,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5631,8 +5626,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5649,8 +5644,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5747,8 +5742,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5767,8 +5762,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5956,8 +5951,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6353,7 +6348,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6402,8 +6397,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6898,8 +6893,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6915,7 +6910,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7032,11 +7027,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7089,7 +7084,7 @@ msgstr "கருதிட்குள் சேர்க்க" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7418,17 +7413,17 @@ msgid "Drop the database (DROP)" msgstr "தரவுத்தளத்தை இரத்து செய் (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "கட்டமைப்பை மட்டும்" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "கட்டமைப்பு மற்றும் தரவுகள்" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "தரவுகளை மட்டும்" @@ -7591,8 +7586,8 @@ msgstr "வரவேற்கிறது %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s " "பயன்படுத்தலாம்" @@ -7847,13 +7842,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7871,7 +7866,7 @@ msgstr "பதிப்பு" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8943,7 +8938,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9111,7 +9106,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "பதிப்பு" @@ -9562,8 +9557,8 @@ msgstr "இறுதிப்பர்வை" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9574,56 +9569,257 @@ msgstr "" msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "%s களத்தை சேர்க்க" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "புதிய பயனாளரை சேர்க்க" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "இயற்று" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "ஏனையது" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "சனி" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total:" msgid "Total Time" msgstr "மொத்த:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "மூடு" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "சிட்டை" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9642,10 +9838,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9773,7 +9965,7 @@ msgstr "" msgid "Sort" msgstr "வரிசைப்படுத்து" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "ஒன்றுமில்லாத" @@ -9938,7 +10130,7 @@ msgstr "பயனுடைய" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "வினவல் வழு" @@ -10080,7 +10272,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10136,7 +10328,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10196,39 +10388,39 @@ msgstr "" msgid "Active options" msgstr "செயல்கள்" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10256,7 +10448,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10661,192 +10853,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "%s களத்தை சேர்க்க" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "புதிய பயனாளரை சேர்க்க" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11727,8 +11733,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11771,45 +11777,35 @@ msgstr "" msgid "Wrong data" msgstr "தரவு இல்லை" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "சிட்டை" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data" @@ -12041,145 +12037,145 @@ msgstr "காட்சிப்படுத்த நீங்கள் கு msgid "No column selected." msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "தரவு இல்லை" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "திகதி" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "பதிப்புகளை காட்டு" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate now" msgid "Activate tracking for %s" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "பதிப்பை உருவாக்கு" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "பதிப்பை உருவாக்கு" @@ -12551,8 +12547,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12679,8 +12675,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/te.po b/po/te.po index 1c44878303..28e7c5d80b 100644 --- a/po/te.po +++ b/po/te.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-11-06 12:16+0200\n" "Last-Translator: వీవెన్ \n" "Language-Team: Telugu \n" -"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.3-dev\n" @@ -48,7 +48,7 @@ msgid "Search:" msgstr "శోధించు" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "శోధించు" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "వెళ్ళు" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "కీలకపదం" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "వివరణ" @@ -108,7 +108,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s డేటాబేసు సృష్టించబడింది" @@ -139,7 +139,7 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "వరుస" @@ -162,7 +162,7 @@ msgstr "వరుస" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "రకం" @@ -179,7 +179,7 @@ msgstr "రకం" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "శూన్యం" @@ -194,7 +194,7 @@ msgstr "శూన్యం" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "అప్రమేయం" @@ -236,9 +236,9 @@ msgstr "వ్యాఖ్యలు" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "కాదు" @@ -263,9 +263,9 @@ msgstr "కాదు" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "అవును" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "పట్టిక" @@ -403,7 +403,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "డేటాబేస్" @@ -411,17 +411,17 @@ msgstr "డేటాబేస్" msgid "Last version" msgstr "చివరి కూర్పు" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "స్థితి" @@ -435,7 +435,7 @@ msgid "Action" msgstr "చర్య" # మొదటి అనువాదము -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "చూపించు" @@ -451,11 +451,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -463,11 +463,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -623,8 +623,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -664,7 +664,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -686,7 +686,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -886,7 +886,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -895,7 +895,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -992,8 +992,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "మూసివేయి" @@ -1124,13 +1124,13 @@ msgstr "బై" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "కిబై" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "మెబై" @@ -1173,7 +1173,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "అమరికలు" @@ -1196,13 +1196,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "ఏమీలేదు" @@ -1301,7 +1302,7 @@ msgstr "ప్రాధమిక అమరికలు" msgid "Current settings" msgstr "మరిన్ని అమరికలు" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Default title" msgid "Chart Title" @@ -1396,7 +1397,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "సమయం" @@ -1506,7 +1507,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "దిగుమతి" @@ -1573,7 +1574,7 @@ msgid "Cancel" msgstr "రద్దుచేయి" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1749,7 +1750,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1763,7 +1764,7 @@ msgid "No rows selected" msgstr "" # మొదటి అనువాదము -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1854,7 +1855,7 @@ msgstr "విషయ సూచిక" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1870,7 +1871,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2363,31 +2364,31 @@ msgstr "గంటకి" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ఆరోహణ" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2543,14 +2544,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "తొలగించు" @@ -2657,16 +2658,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2693,91 +2689,91 @@ msgstr "" msgid "Options" msgstr "ఎంపికలు" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "పాక్షిక పాఠ్యాలు" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "పూర్తి పాఠ్యాలు" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Version information" msgid "Hide browser transformation" msgstr "సంచిక సమాచారం" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "మొత్తం" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2786,8 +2782,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2798,50 +2794,50 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ఎగుమతి" # మొదటి అనువాదము -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2916,38 +2912,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "వ్యాఖ్య" @@ -2988,7 +2984,7 @@ msgstr "చూపుము" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "నిర్మాణాకృతి" @@ -3136,21 +3132,21 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Server configuration" msgid "Could not save recent table" msgstr "సేవకి స్వరూపణం" # మొదటి అనువాదము -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgctxt "short form" #| msgid "Create table" msgid "Recent tables" msgstr "పట్టికను సృష్టించు" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3397,7 +3393,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3495,14 +3491,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3747,7 +3743,7 @@ msgstr "" msgid "Max: %s%s" msgstr "గరిష్ఠం: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3806,7 +3802,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4274,8 +4270,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4804,9 +4800,8 @@ msgstr "పుట శీర్షికలు" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5554,8 +5549,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5751,8 +5746,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5769,8 +5764,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5869,8 +5864,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5889,8 +5884,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6083,8 +6078,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "వాడుకరిపేరు" @@ -6494,7 +6489,7 @@ msgstr "డేటాబేసు(లు)" msgid "Table(s):" msgstr "పట్టిక(లు):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6543,8 +6538,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7041,8 +7036,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7060,7 +7055,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7182,11 +7177,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7239,7 +7234,7 @@ msgstr "పట్టిక వ్యాఖ్యలు" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7590,17 +7585,17 @@ msgid "Drop the database (DROP)" msgstr "డేటాబేస్ ను తుడిచివేయి" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "డేటా మాత్రమే" @@ -7764,8 +7759,8 @@ msgstr "%sకి స్వాగతం" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8021,13 +8016,13 @@ msgstr "వ్యాఖ్యలు" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -8044,7 +8039,7 @@ msgstr "చివరి కూర్పు" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9159,7 +9154,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9324,7 +9319,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9775,8 +9770,8 @@ msgstr "అవలోకనం" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9788,58 +9783,272 @@ msgstr "" msgid "You have added a new user." msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "క్షణం" +msgstr[1] "క్షణం" + +# మొదటి అనువాదము +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "నిమిషం" +msgstr[1] "నిమిషం" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "గణాంకాలను చూపించు" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +# మొదటి అనువాదము +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add into comments" +msgid "Add chart" +msgstr "స్పందనలకు చేర్చు" + +# మొదటి అనువాదము +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "డేటాబేస్ తొలగించండి" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "క్రొత్త వాడుకరిని చేర్చు" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "మొదలుపెట్టు" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Table comments" +msgid "Chart columns" +msgstr "పట్టిక వ్యాఖ్యలు" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Leave blank for defaults" +msgid "Reset to default" +msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "General" msgid "Generated by:" msgstr "సాధారణ" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "మొదలుపెట్టు" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "మొత్తం" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "సమయం" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "మూసివేయి" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "సమయం" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Data Label" +msgid "Label:" +msgstr "డేటాబేస్" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9858,10 +10067,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9991,7 +10196,7 @@ msgstr "" msgid "Sort" msgstr "క్రమంలో పేర్చు" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "ఏమీలేదు" @@ -10163,7 +10368,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -10312,7 +10517,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10373,7 +10578,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10438,46 +10643,46 @@ msgid "Active options" msgstr "క్రియాశీల ఎంపికలు" # మొదటి అనువాదము -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "పుటను సృష్టించడమైనది" # మొదటి అనువాదము -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" # మొదటి అనువాదము -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "పుట" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" # మొదటి అనువాదము -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "పుటని సృష్టించు" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "కొత్త పుట పేరు: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10505,7 +10710,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10921,205 +11126,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -# మొదటి అనువాదము -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add into comments" -msgid "Add chart" -msgstr "స్పందనలకు చేర్చు" - -# మొదటి అనువాదము -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "డేటాబేస్ తొలగించండి" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "క్రొత్త వాడుకరిని చేర్చు" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "గణాంకాలను చూపించు" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "క్షణం" -msgstr[1] "క్షణం" - -# మొదటి అనువాదము -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "నిమిషం" -msgstr[1] "నిమిషం" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "మొదలుపెట్టు" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Table comments" -msgid "Chart columns" -msgstr "పట్టిక వ్యాఖ్యలు" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Leave blank for defaults" -msgid "Reset to default" -msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12009,8 +12015,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12053,45 +12059,35 @@ msgstr "" msgid "Wrong data" msgstr "భోగట్టా" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Data Label" -msgid "Label:" -msgstr "డేటాబేస్" - #: tbl_chart.php:38 #, fuzzy #| msgid "data" @@ -12328,146 +12324,146 @@ msgstr "భోగట్టా" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "data" msgid "No data" msgstr "భోగట్టా" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "తేదీ" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "More settings" msgid "Create version %1$s of %2$s" msgstr "మరిన్ని అమరికలు" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12832,8 +12828,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12962,8 +12958,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/th.po b/po/th.po index 0512114435..99f90cd8e8 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-29 08:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Thai \n" -"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "ค้นหา" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "ค้นหา" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "ไป" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "ชื่อคีย์" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "คำอธิบาย" @@ -105,7 +105,7 @@ msgid "" "for more information." msgstr "ไม่สามารถเปิดไฟล์ %s ได้ เพื่อรายละเอียด กรุณาไป www.phpmyadmin.net" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบร้อยแล้ว" @@ -135,7 +135,7 @@ msgstr "หมายเหตุของตาราง" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "สดมภ์" @@ -158,7 +158,7 @@ msgstr "สดมภ์" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "ชนิด" @@ -175,7 +175,7 @@ msgstr "ชนิด" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "ว่างเปล่า (null)" @@ -190,7 +190,7 @@ msgstr "ว่างเปล่า (null)" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "ค่าปริยาย" @@ -232,9 +232,9 @@ msgstr "หมายเหตุ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "ไม่" @@ -259,9 +259,9 @@ msgstr "ไม่" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "ใช่" @@ -311,7 +311,7 @@ msgstr "การจัดเก็บการตั้งค่าของ ph #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "ตาราง" @@ -392,7 +392,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "ฐานข้อมูล" @@ -400,17 +400,17 @@ msgstr "ฐานข้อมูล" msgid "Last version" msgstr "เวอร์ชั่นล่าสุด" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "ถูกสร้าง" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "ปรับปรุงแล้ว" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "สถานะ" @@ -423,7 +423,7 @@ msgstr "สถานะ" msgid "Action" msgstr "กระทำการ" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "แสดง" @@ -439,11 +439,11 @@ msgstr "ลบการติดตามตารางนี้" msgid "Drop" msgstr "โยนทิ้ง" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "ใช้งานได้" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ใช้งานไม่ได้" @@ -451,11 +451,11 @@ msgstr "ใช้งานไม่ได้" msgid "Versions" msgstr "รุ่น" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "รายงานผลการติดตาม" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "เก็บโครงสร้างไว้" @@ -609,8 +609,8 @@ msgstr "เลือก \"GeomFromText\" จากแถวฟังก์ชั #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "คุณพยายามที่จะอัพโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ " "เพื่อแก้ไขปัญหาดังกล่าวนี้" @@ -656,7 +656,7 @@ msgstr "ไม่สามารถแปลงไฟล์ข้อมูลช msgid "Could not load import plugins, please check your installation!" msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" @@ -680,7 +680,7 @@ msgstr "" "ชุดข้อมูลที่นำเข้าล่าสุดไม่ได้สามารถนำเข้าได้ หมายความว่า phpMyAdmin ไม่สามารถนำเข้าได้ทัน " "ตามเวลารันสูงสุดที่กำหนดใน PHP" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -887,7 +887,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" @@ -896,7 +896,7 @@ msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" msgid "Do you really want to execute \"%s\"?" msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "คุณกำลังจะทำลายฐานข้อมูลทั้งหมด" @@ -982,8 +982,8 @@ msgstr "รีเฟรชสิทธิใหม่" msgid "Removing Selected Users" msgstr "ถอนผู้ใช้ที่เลือก" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "ปิด" @@ -1108,13 +1108,13 @@ msgstr "ไบต์" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "กิโลไบต์" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "เมกกะไบต์" @@ -1153,7 +1153,7 @@ msgid "Traffic" msgstr "การจราจร" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "การตั้งค่า" @@ -1173,13 +1173,14 @@ msgstr "เพิ่มแสดงผลไปในตารางข้อม msgid "Please add at least one variable to the series" msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "ไม่มี" @@ -1274,7 +1275,7 @@ msgstr "เปลี่ยนการตั้งค่า" msgid "Current settings" msgstr "ค่าที่ถูกตั้งปัจจุบัน" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "ชื่อการแสดงผล" @@ -1358,7 +1359,7 @@ msgstr "อธิบายผลคำสั่ง" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "เวลา" @@ -1452,7 +1453,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "นำเข้า" @@ -1509,7 +1510,7 @@ msgid "Cancel" msgstr "ยกเลิก" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "กำลังโหลด" @@ -1657,7 +1658,7 @@ msgstr "ซ่อนช่องใส่คำค้น SQL" msgid "Show query box" msgstr "แสดงช่องคำค้น SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1670,7 +1671,7 @@ msgstr "แก้ไข" msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1755,7 +1756,7 @@ msgstr "สารบัญ" msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "คัดลอก" @@ -1771,7 +1772,7 @@ msgstr "แถวข้อความ" msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "เรขาคณิต" @@ -2250,31 +2251,31 @@ msgstr "ต่อชั่วโมง" msgid "per day" msgstr "ต่อวัน" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "ไฟล์ตั้งค่า %s ไม่สามารถอ่านได้" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "สิทธิสำหรับไฟล์ตั้งค่าไม่ถูกต้อง ที่ถูกต้องจะต้องแก้ไขได้เฉพาะ root" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "ขนาดตัวอักษร" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "น้อยไปมาก" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2428,14 +2429,14 @@ msgstr "เปิดดู" msgid "Delete the matches for the %s table?" msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "ลบ" @@ -2532,16 +2533,11 @@ msgstr "แนวนอน (หมุนหัวเรื่อง)" msgid "vertical" msgstr "แนวตั้ง" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "เรียงโดยคีย์" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2568,97 +2564,97 @@ msgstr "เรียงโดยคีย์" msgid "Options" msgstr "ตัวเลือก" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "ข้อความบางส่วน" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "ทั้งข้อความ" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "รีเลชันแนล สกีมา" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "รีเลชันแนล สกีมา" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "แสดงเนื้อหาไบนารี" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "แสดงเนื้อหา BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy msgid "Hide browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "ข้อความที่รู้จักกันดี" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "ไบนารีที่รู้จักกันดี" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "ในคำค้น" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "การแสดงผลนี้ จะแสดงเพียงจำนวนข้อมูลนี้เท่านั้น ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "แสดงแถว" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "ทั้งหมด" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2667,8 +2663,8 @@ msgstr "คำค้นใช้เวลา %01.4f วินาที" msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2679,47 +2675,47 @@ msgstr "ทำกับที่เลือก:" msgid "Check All" msgstr "เลือกทั้งหมด" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ส่งออก" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "สร้างมุมมอง" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "การดำเนินงานผลแบบสอบถาม" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "แสดง" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "มุมมองเหมือนพิมพ์ (ข้อความแบบเต็ม)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "แสดงภาพของข้อมูล GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -2796,38 +2792,38 @@ msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "ดัชนี" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "กลุ่ม" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "เอกเทศ" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "การตรวจทาน" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "หมายเหตุ" @@ -2867,7 +2863,7 @@ msgstr "ตารางจำลอง (View)" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "โครงสร้าง" @@ -3010,15 +3006,15 @@ msgstr[0] "%1$d ระเบียนถูกเพิ่ม" msgid "Error while creating PDF:" msgstr "เกิดข้อผิดพลาดขณะสร้าง PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "ไม่สามารถบันทึกตารางล่าสุด" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "ตารางล่าสุด" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "ไม่มีตารางล่าสุด" @@ -3273,7 +3269,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3377,14 +3373,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3635,7 +3631,7 @@ msgstr "" msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3696,7 +3692,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "อินไลน์" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "การทำแฟ้มประวัติ" @@ -4176,8 +4172,8 @@ msgstr "แก้ไขคอลัมน์ CHAR" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4740,9 +4736,8 @@ msgstr "หมายเลขหน้า:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5488,8 +5483,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5691,8 +5686,8 @@ msgstr "วิเคราะห์ตาราง" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5710,11 +5705,11 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]" +"ดูตัวอย่าง [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"ประเภทของการรับรองความถูกต้อง[/a]" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -5816,8 +5811,8 @@ msgstr "คำสั่ง" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5836,8 +5831,8 @@ msgstr "สร้างเวอร์ชั่นโดยอัตโนมั #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6030,8 +6025,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" @@ -6446,7 +6441,7 @@ msgstr "ฐานข้อมูล" msgid "Table(s):" msgstr "ตาราง" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6501,8 +6496,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7009,8 +7004,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7028,7 +7023,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." @@ -7151,11 +7146,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7210,7 +7205,7 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Add prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7543,17 +7538,17 @@ msgid "Drop the database (DROP)" msgstr "โยนฐานข้อมูลทิ้ง" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "เฉพาะข้อมูล" @@ -7724,8 +7719,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "คุณคงไม่ได้สร้างแฟ้มการกำหนดค่า คุณอาจต้องการใช้ %1$ssetup script%2$s " "เพื่อสร้างอย่างใดอย่างหนึ่ง" @@ -8004,7 +7999,7 @@ msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8012,7 +8007,7 @@ msgstr "โฮสต์" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8030,7 +8025,7 @@ msgstr "รุ่นของ PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9151,7 +9146,7 @@ msgstr "แอตทริบิวต์" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "เพิ่มเติม" @@ -9324,7 +9319,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "เวอร์ชั่น" @@ -9784,8 +9779,8 @@ msgstr "ข้อมูลทั่วไปของผู้ใช้" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9796,60 +9791,275 @@ msgstr "ไม่พบผู้ใช้ที่เลือกในตาร msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "ต่อวินาที" +msgstr[1] "ต่อวินาที" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ใช้อยู่" +msgstr[1] "ใช้อยู่" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "สถิติของแถว" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "เลือกทั้งหมด" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "ชนิดคำค้น" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "เพิ่มฟิลด์ใหม่" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "เอาฐานข้อมูลออก" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "สถานะของตัวแปร" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "เลือกตาราง" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "เพิ่มผู้ใช้ใหม่" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "คำค้น SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "ส." + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "เรียกใหม่" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "ผลลัพธ์ SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "สร้างโดย" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "เฉพาะข้อมูล" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "อื่นๆ" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "สถานะ" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "เวลารวม:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "เวลา" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "ปิด" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "เวลา" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "จดคำค้นนี้ไว้" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "ป้ายชื่อ" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9870,10 +10080,6 @@ msgstr "ล้าง" msgid "Bookmark this SQL query:" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10011,7 +10217,7 @@ msgstr "ตรวจสอบตารางที่มี overhead" msgid "Sort" msgstr "เรียง" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "ไม่มี" @@ -10179,7 +10385,7 @@ msgstr "มีผล" msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10339,7 +10545,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" @@ -10397,7 +10603,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "จีน (ไต้หวัน)" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10472,52 +10678,52 @@ msgstr "สร้าง" msgid "Active options" msgstr "ตัวเลือกตาราง" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "ใช้งาน" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "นำเข้าไฟล์" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "ยังไม่ได้เลือกแถว" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "สร้างดัชนีใหม่" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ชื่อผู้ใช้" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "ยังไม่ได้เลือกแถว" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10547,7 +10753,7 @@ msgstr "รีเลชันภายใน" msgid "Relation deleted" msgstr "มุมมองรีเลชัน" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10971,206 +11177,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "เพิ่มฟิลด์ใหม่" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "เอาฐานข้อมูลออก" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "สถานะของตัวแปร" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "เลือกตาราง" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "เพิ่มผู้ใช้ใหม่" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "คำค้น SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "สถิติของแถว" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "เลือกทั้งหมด" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "ชนิดคำค้น" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "ต่อวินาที" -msgstr[1] "ต่อวินาที" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ใช้อยู่" -msgstr[1] "ใช้อยู่" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "ส." - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "เรียกใหม่" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12066,8 +12072,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12110,28 +12116,28 @@ msgstr "" msgid "Wrong data" msgstr "ไม่มีฐานข้อมูล" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12142,21 +12148,11 @@ msgid "" msgstr "" "ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "จดคำค้นนี้ไว้" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "ป้ายชื่อ" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12397,148 +12393,148 @@ msgstr "เลือกฟิลด์ที่ต้องการแสดง msgid "No column selected." msgstr "ยังไม่ได้เลือกแถว" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "ลบการติดตามตารางนี้" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "ไม่มีข้อมูล" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "วันที่" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "ลบการติดตามตารางนี้" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "สร้างเวอร์ชั่น %1$s ของ %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "สร้างเวอร์ชั่น" @@ -12910,8 +12906,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13043,8 +13039,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13750,8 +13746,8 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า " -"60%% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " +"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า 60%" +"% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " "มากหรือบริการอื่นๆ ที่ทำงานบนเครื่องเดียวกัน" #: libraries/advisory_rules.txt:459 @@ -14204,8 +14200,8 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" -#~ "%s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" +#~ "s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tk.po b/po/tk.po index 9ea4f11470..820b33befc 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" -"Language: tk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tk\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -51,7 +51,7 @@ msgid "Search:" msgstr "Gözle" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -80,21 +80,21 @@ msgstr "Gözle" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Git" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Açarsözi" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Düşündiriş" @@ -113,7 +113,7 @@ msgstr "" "%s faýly sistemada ýok, has giňişleýin maglumatlar üçin www.phpmyadmin.net " "sahypa seretmegiňizi haýyş edýäris." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s maglumatlar ulgamy döredildi." @@ -141,7 +141,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "" @@ -164,7 +164,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "" @@ -181,7 +181,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "" @@ -196,7 +196,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "" @@ -238,9 +238,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "" @@ -265,9 +265,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "" @@ -395,7 +395,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "" @@ -403,17 +403,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -426,7 +426,7 @@ msgstr "" msgid "Action" msgstr "" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "" @@ -442,11 +442,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -454,11 +454,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -602,8 +602,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -643,7 +643,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -665,7 +665,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -845,7 +845,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -854,7 +854,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -938,8 +938,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1062,13 +1062,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1107,7 +1107,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1127,13 +1127,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1226,7 +1227,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1306,7 +1307,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1397,7 +1398,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1454,7 +1455,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1602,7 +1603,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1615,7 +1616,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1697,7 +1698,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1713,7 +1714,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2184,31 +2185,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2350,14 +2351,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2444,16 +2445,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2480,89 +2476,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2571,8 +2567,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2583,45 +2579,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2696,38 +2692,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2767,7 +2763,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2912,15 +2908,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3156,7 +3152,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3253,14 +3249,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3496,7 +3492,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3555,7 +3551,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4011,8 +4007,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4533,9 +4529,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5268,8 +5263,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5462,8 +5457,8 @@ msgstr "" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5480,8 +5475,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5578,8 +5573,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5598,8 +5593,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -5785,8 +5780,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6172,7 +6167,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6221,8 +6216,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -6711,8 +6706,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -6728,7 +6723,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6844,11 +6839,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6893,7 +6888,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7220,17 +7215,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7391,8 +7386,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7634,13 +7629,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7654,7 +7649,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8680,7 +8675,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8841,7 +8836,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9282,8 +9277,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9294,46 +9289,239 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9352,10 +9540,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9481,7 +9665,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9637,7 +9821,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9772,7 +9956,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9828,7 +10012,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9886,39 +10070,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9946,7 +10130,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10350,186 +10534,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11404,8 +11408,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -11446,43 +11450,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11688,143 +11684,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -12174,8 +12170,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12293,8 +12289,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/tr.po b/po/tr.po index 9e8830dc72..0d345c9399 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-12 11:51+0200\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish " -"\n" -"Language: tr\n" +"Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Arama:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Arama:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Git" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Anahtar adı" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Açıklama" @@ -107,7 +107,7 @@ msgstr "" "%s dosyası bu sistemde mevcut değil, lütfen daha fazla bilgi için www." "phpmyadmin.net adresini ziyaret edin." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." @@ -135,7 +135,7 @@ msgstr "Tablo yorumları:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Sütun" @@ -158,7 +158,7 @@ msgstr "Sütun" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Türü" @@ -175,7 +175,7 @@ msgstr "Türü" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Boş" @@ -190,7 +190,7 @@ msgstr "Boş" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Varsayılan" @@ -232,9 +232,9 @@ msgstr "Yorumlar" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Hayır" @@ -259,9 +259,9 @@ msgstr "Hayır" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Evet" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tablo" @@ -388,7 +388,7 @@ msgstr "İzlenen tablolar" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Veritabanı" @@ -396,17 +396,17 @@ msgstr "Veritabanı" msgid "Last version" msgstr "Son sürüm" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Oluşturuldu" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Güncellendi" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Durum" @@ -419,7 +419,7 @@ msgstr "Durum" msgid "Action" msgstr "Eylem" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Göster" @@ -435,11 +435,11 @@ msgstr "Bu tablo için izleme verisini sil" msgid "Drop" msgstr "Kaldır" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "aktif değil" @@ -447,11 +447,11 @@ msgstr "aktif değil" msgid "Versions" msgstr "Sürümler" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "İzleme raporu" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" @@ -599,8 +599,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınır için çözüm " "yolu olarak %sbelgeden%s yararlanın." @@ -649,7 +649,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Yer imi %s oluşturuldu" @@ -676,7 +676,7 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı " "biteremeyeceği anlamına gelir." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -866,8 +866,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı, bazı " -"genişletilmiş özellikler devre dışı bırakıldı. Nedenini öğrenmek için " -"%sburaya%s tıklayın." +"genişletilmiş özellikler devre dışı bırakıldı. Nedenini öğrenmek için %" +"sburaya%s tıklayın." #: index.php:521 #, php-format @@ -887,7 +887,7 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s " "yararlanın." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." @@ -896,7 +896,7 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -980,8 +980,8 @@ msgstr "Yetkiler Yeniden Yükleniyor" msgid "Removing Selected Users" msgstr "Seçili Kullanıcılar Kaldırılıyor" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Kapat" @@ -1108,13 +1108,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1153,7 +1153,7 @@ msgid "Traffic" msgstr "Trafik" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Ayarlar" @@ -1173,13 +1173,14 @@ msgstr "Çizelgeyi ızgaraya ekle" msgid "Please add at least one variable to the series" msgstr "Lütfen diziye en az bir değişken ekleyin" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Yok" @@ -1223,8 +1224,8 @@ msgid "" "depending on your system." msgstr "" "slow_query_log etkinleştirildi ama sunucu sadece %d saniyeden daha uzun " -"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak " -"0-2 saniyeye ayarlanması tavsiye edilir." +"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-" +"2 saniyeye ayarlanması tavsiye edilir." #: js/messages.php:128 #, php-format @@ -1279,7 +1280,7 @@ msgstr "Değiştirme ayarları" msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Çizelge Başlığı" @@ -1365,7 +1366,7 @@ msgstr "Çıktıyı açıkla" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Süre" @@ -1463,7 +1464,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçe Aktar" @@ -1520,7 +1521,7 @@ msgid "Cancel" msgstr "İptal" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Yükleniyor" @@ -1670,7 +1671,7 @@ msgstr "Sorgu kutusunu gizle" msgid "Show query box" msgstr "Sorgu kutusunu göster" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1683,7 +1684,7 @@ msgstr "Düzenle" msgid "No rows selected" msgstr "Seçilen satırlar yok" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1770,7 +1771,7 @@ msgstr "Veri imleci içeriği" msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Kopyala" @@ -1786,7 +1787,7 @@ msgstr "Satır dizgisi" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Geometri" @@ -1939,8 +1940,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " -"%s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" +"s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version #: js/messages.php:372 @@ -2271,32 +2272,32 @@ msgstr "saat başına" msgid "per day" msgstr "gün başına" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Mevcut yapılandırma dosyası (%s) okunabilir değil." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Yapılandırma dosyasında yanlış izinler, herkesçe yazılabilir olmamalıdır!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Yazı Tipi boyutu" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Küçükten Büyüğe" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2436,14 +2437,14 @@ msgstr "Gözat" msgid "Delete the matches for the %s table?" msgstr "%s tablosu için benzeşenler silinsin mi?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Sil" @@ -2530,16 +2531,11 @@ msgstr "yatay (döndürülmüş başlıklar)" msgid "vertical" msgstr "dikey" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Her %s satırda bir başlıklar" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Anahtara göre sırala" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2566,90 +2562,90 @@ msgstr "Anahtara göre sırala" msgid "Options" msgstr "Seçenekler" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Kısmi metinler" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Tam metinler" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Bağlantılı anahtar" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Bağlantılı görüntü sütunu" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Binari içerikleri göster" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Binari içerikleri HEX olarak göster" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Tarayıcı dönüşümünü gizle" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Çok İyi Bilinen Metin" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Çok İyi Bilinen Binari" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Sonlandır" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Yaklaşık olabilir. [doc@faq3-11]SSS 3.11[/doc]'e bakın" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Gösterilen satırlar" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "toplam" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2658,8 +2654,8 @@ msgstr "Sorgu %01.4f san. sürdü" msgid "With selected:" msgstr "Seçilileri:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2670,45 +2666,45 @@ msgstr "Seçilileri:" msgid "Check All" msgstr "Tümünü Seç" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Dışa Aktar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Görünüm oluştur" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Baskı görünümü" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -2786,38 +2782,38 @@ msgstr "Tanımlı indeks yok!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "İndeksler" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Benzersiz" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Önemlilik" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Karşılaştırma" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Yorum" @@ -2859,7 +2855,7 @@ msgstr "Görünüm" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Yapı" @@ -3001,15 +2997,15 @@ msgstr[0] "%1$d satır eklendi." msgid "Error while creating PDF:" msgstr "PDF oluşturulurken hata:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Son tablo kaydedilemedi" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Son tablolar" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Son tablolar yok" @@ -3249,7 +3245,7 @@ msgid "Maximum rows to plot" msgstr "Çizim için en fazla satır" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Dış değerlere gözat" @@ -3359,20 +3355,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den " "-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler " -"-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " +"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler -" +"1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " "2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır" #: libraries/Types.class.php:312 @@ -3653,7 +3649,7 @@ msgstr "Bir numaralandırma, tanımlanmış değerlerin listesinden seçilir" msgid "Max: %s%s" msgstr "En fazla: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL sorgusu:" @@ -3712,7 +3708,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Sıralı" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profil çıkart" @@ -4161,8 +4157,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/" -"Bzip2]bzip2[/a] sıkıştırma etkin" +"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Bzip2]" +"bzip2[/a] sıkıştırma etkin" #: libraries/config/messages.inc.php:27 msgid "Bzip2" @@ -4184,8 +4180,8 @@ msgstr "CHAR sütununu düzenleme" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "Sözdizimi vurgulama ve satır numaraları ile SQL sorgularını ([a@http://" "codemirror.net/]CodeMirror[/a]) düzenlemek için kullanımı kolay düzenleyici " @@ -4583,8 +4579,8 @@ 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 "" -"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" +"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:149 msgid "Foreign key dropdown order" @@ -4724,9 +4720,8 @@ msgstr "Sayfa başlığı" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "Tarayıcının başlık çubuğu metnini belirler. Özel değerleri almakta " "kullanılabilecek sihirli dizgiler için [doc@cfg_TitleTable]belgeden[/doc] " @@ -4792,8 +4787,8 @@ msgid "" "documentation" msgstr "" "İlave özelliklere erişim kazanmak için phpMyAdmin yapılandırma depolamasını " -"yapılandırır, belgelerde [doc@linked-tables]phpMyAdmin yapılandırma " -"depolama[/doc] kısmına bakın" +"yapılandırır, belgelerde [doc@linked-tables]phpMyAdmin yapılandırma depolama" +"[/doc] kısmına bakın" #: libraries/config/messages.inc.php:204 msgid "Changes tracking" @@ -4916,8 +4911,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/" -"Gzip]gzip[/a] sıkıştırma etkin" +"İç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:235 msgid "GZip" @@ -5538,11 +5533,11 @@ msgstr "Yer imi tablosu" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" -"Sütun yorumları/mime türleri istenmiyorsa boş bırakın, önerilen: " -"[kbd]pma__column_info[/kbd]" +"Sütun yorumları/mime türleri istenmiyorsa boş bırakın, önerilen: [kbd]" +"pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5614,8 +5609,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Tasarımcı desteği istenmiyorsa boş bırakın, önerilen: " -"[kbd]pma__designer_coords[/kbd]" +"Tasarımcı desteği istenmiyorsa boş bırakın, önerilen: [kbd]" +"pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5656,8 +5651,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, önerilen: " -"[kbd]pma__history[/kbd]" +"SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, önerilen: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5766,8 +5761,8 @@ msgstr "Son kullanılan tablo" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]İlişki bağlantıları[/a] desteği " "istenmiyorsa boş bırakın, önerilen: [kbd]pma__relation[/kbd]" @@ -5786,8 +5781,8 @@ msgstr "SHOW DATABASES komutu" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" "Örnek için [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]kimlik " "doğrulaması türlerine[/a] bakın" @@ -5822,8 +5817,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"PDF şeması desteği istenmiyorsa boş bırakın, önerilen: " -"[kbd]pma__table_coords[/kbd]" +"PDF şeması desteği istenmiyorsa boş bırakın, önerilen: [kbd]pma__table_coords" +"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5900,11 +5895,11 @@ msgstr "İfadelerden izlere" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" -"SQL sorgu izleme desteği olmaması için boş bırakın, önerilen: " -"[kbd]pma__tracking[/kbd]" +"SQL sorgu izleme desteği olmaması için boş bırakın, önerilen: [kbd]" +"pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5924,8 +5919,8 @@ msgstr "Otomatik olarak sürümleri oluştur" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, " "önerilen: [kbd]pma__userconfig[/kbd]" @@ -5966,10 +5961,9 @@ msgid "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -"Lütfen unutmayın, bunu etkinleştirmek kimlik doğrulaması kipi " -"[kbd]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" +"Lütfen unutmayın, bunu etkinleştirmek kimlik doğrulaması kipi [kbd]" +"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:458 msgid "Show password change form" @@ -6140,11 +6134,11 @@ msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -"Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı " -"[kbd]isimsiz'dir[/kbd])" +"Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]" +"isimsiz'dir[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Kullanıcı Adı" @@ -6302,8 +6296,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" 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" +"İç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:530 msgid "ZIP" @@ -6554,7 +6548,7 @@ msgstr "Veritabanı(ları):" msgid "Table(s):" msgstr "Tablo(lar):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Satırlar:" @@ -6603,8 +6597,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -7161,8 +7155,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -7180,7 +7174,7 @@ msgid "No data found for GIS visualization." msgstr "GIS görselleştirmesi için bulunan veri yok." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." @@ -7300,11 +7294,11 @@ msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+OK TUŞLARI'nı kullanın" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -7349,7 +7343,7 @@ msgstr "Tablo ön eki ekle:" msgid "Add prefix" msgstr "Ön ek ekle" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?" @@ -7675,17 +7669,17 @@ msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Sadece yapı" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Yapı ve veri" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Sadece veri" @@ -7846,8 +7840,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -8099,13 +8093,13 @@ msgstr "İlk satır içine sütun adlarını koy:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Anamakine:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Üretim Zamanı:" @@ -8119,7 +8113,7 @@ msgstr "PHP Sürümü:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Veritabanı:" @@ -8393,7 +8387,6 @@ msgstr "" "düzeltin ve tekrar deneyin." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "OpenDocument Hesap Tablosu ayrıştırılamadı!" @@ -9243,7 +9236,7 @@ msgstr "Öznitelikler" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9406,7 +9399,7 @@ msgid "Library" msgstr "Kütüphane" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Sürüm" @@ -9863,8 +9856,8 @@ msgstr "Kullanıcılara genel bakış" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " @@ -9879,46 +9872,262 @@ msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d saniye" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d dakika" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Günlük istatistikleri" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Seçili zaman aralığı:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seçin." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Sonuçlar sorgu metnine göre gruplandırılır." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Sorgu çözümleyici" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "İzleme Yönergeleri" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin İzleyici sunucu yapılandırmasını uyarlamada ve yoğun sorgularda " +"iz sürme süresinde size yardımcı olabilir. Sonrası için log_output'u " +"'TABLE'a ayarlamanız gerekecektir ve ya slow_query_log ya da general_log " +"etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve " +"sunucu yükünü %15'e kadar arttırır." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Ne yazık ki Veritabanı sunucunuz phpMyAdmin ile veritabanı günlüklerini " +"çözümlemek için gereken tabloları günlüklemeyi desteklemiyor. Tabloyu " +"günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " +"sunucu çizelgeleme özelliklerini kullanabilirsiniz." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "İzleyici kullanımı:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Tarayıcınız tüm görüntülenen çizelgeleri düzenli aralıklarla yenileyecek. " +"'Ayarlar' altında çizelgeleri ekleyebilir ve yenileme oranını " +"değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " +"kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Günlüklerden sorguları görüntülemek için herhangi bir çizelgede sol fare " +"tuşunu basılı tutarak ve çizelge üzerinde kaydırarak ilgili zaman aralığını " +"seçin. Bir kere onaylandı mı, bu, gruplanmış sorguların tablolarını " +"yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " +"ifadesine tıklayabilirsiniz." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Lütfen unutmayın:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log'u etkinleştirmek sunucu yükünü %5-15 arttırabilir. Aynı zamanda " +"günlükten oluşturulan istatistiklerin yoğun görev yükü olduğundan haberiniz " +"olsun bu yüzden sadece küçük zaman aralıkları seçmek ve general_log'u " +"etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " +"izlemeyi gerektirmez." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Çizelge ekle" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Hazır çizelge" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Durum değişken(leri)i" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Dizi seç:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Genellikle izlenen" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "veya değişken adını yazın:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Ayırdedici değer olarak görüntüle" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Bir bölen uygula" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Veri değerlerine birimi ekle" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Bu diziyi ekle" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Diziyi temizle" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Çizelgedeki Dizi:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "İzlemeyi başlat" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Yönergeler/Ayarlama" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Çizelgeleri sürüklemeyi (yeniden düzenlemeyi) bitir" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Çizelgeleri sürüklemeyi etkinleştir" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Yenileme oranı" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Çizelge sütunu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Çizelge ayarlaması" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık " +"ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Varsayılana sıfırla" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL sonucu" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Üreten:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Ayrıntılı profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Sıra" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Durum" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Duruma göre özet" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Toplam Süre" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Süre" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Çağrılar" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø Süre" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bu SQL sorgusunu işaretle" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etiket:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Her kullanıcının bu yer imine erişmesine izin ver" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9937,10 +10146,6 @@ msgstr "Temizle" msgid "Bookmark this SQL query:" msgstr "Bu SQL sorgusunu işaretle:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Her kullanıcının bu yer imine erişmesine izin ver" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Aynı ismin mevcut yer imini değiştir" @@ -10080,7 +10285,7 @@ msgstr "Ek yükü olan tabloları kontrol et" msgid "Sort" msgstr "Sırala" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Yok" @@ -10234,7 +10439,7 @@ msgstr "Etkili" msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Sorgu hatası" @@ -10385,7 +10590,7 @@ msgstr "ZIP arşivinde hata:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Önemli hata: Rehbere sadece AJAX aracılığıyla erişilebilir" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" @@ -10441,7 +10646,7 @@ msgstr "Küçüğü/büyüğü değiştir" msgid "Toggle relation lines" msgstr "İlgili satırları değiştir" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF şeması için düzenlemeleri içe/dışa aktar" @@ -10499,39 +10704,39 @@ msgstr "Topla" msgid "Active options" msgstr "Aktif seçenekler" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Sayfa oluşturuldu" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sayfa oluşturma başarısız" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Sayfa:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Seçili sayfadan içe aktar" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Seçili sayfaya aktar" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Yeni bir sayfa oluştur ve ona aktar" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Yeni sayfa adı: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Ölçeklemek için içe/dışa aktar:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "önerilir" @@ -10559,7 +10764,7 @@ msgstr "Dahili bağlantı eklendi" msgid "Relation deleted" msgstr "Bağlantı silindi" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Tasarımcı düzenlemelerini kaydetme hatası." @@ -10613,8 +10818,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. " -"%sKur programcığı%s kullanarak." +"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. %" +"sKur programcığı%s kullanarak." #: prefs_manage.php:308 msgid "Save to browser's storage" @@ -11005,209 +11210,6 @@ msgstr "" "gözlemlemek, veritabanınızı kıyaslamak ve eğer açıkça ölçülebilir bir " "iyileştirilme olmadıysa, değişikliği geri almak olacaktır." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "İzleme Yönergeleri" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin İzleyici sunucu yapılandırmasını uyarlamada ve yoğun sorgularda " -"iz sürme süresinde size yardımcı olabilir. Sonrası için log_output'u " -"'TABLE'a ayarlamanız gerekecektir ve ya slow_query_log ya da general_log " -"etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve " -"sunucu yükünü %15'e kadar arttırır." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Ne yazık ki Veritabanı sunucunuz phpMyAdmin ile veritabanı günlüklerini " -"çözümlemek için gereken tabloları günlüklemeyi desteklemiyor. Tabloyu " -"günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " -"sunucu çizelgeleme özelliklerini kullanabilirsiniz." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "İzleyici kullanımı:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Tarayıcınız tüm görüntülenen çizelgeleri düzenli aralıklarla yenileyecek. " -"'Ayarlar' altında çizelgeleri ekleyebilir ve yenileme oranını " -"değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " -"kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Günlüklerden sorguları görüntülemek için herhangi bir çizelgede sol fare " -"tuşunu basılı tutarak ve çizelge üzerinde kaydırarak ilgili zaman aralığını " -"seçin. Bir kere onaylandı mı, bu, gruplanmış sorguların tablolarını " -"yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " -"ifadesine tıklayabilirsiniz." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Lütfen unutmayın:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log'u etkinleştirmek sunucu yükünü %5-15 arttırabilir. Aynı zamanda " -"günlükten oluşturulan istatistiklerin yoğun görev yükü olduğundan haberiniz " -"olsun bu yüzden sadece küçük zaman aralıkları seçmek ve general_log'u " -"etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " -"izlemeyi gerektirmez." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Çizelge ekle" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Hazır çizelge" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Durum değişken(leri)i" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Dizi seç:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Genellikle izlenen" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "veya değişken adını yazın:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Ayırdedici değer olarak görüntüle" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Bir bölen uygula" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Veri değerlerine birimi ekle" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Bu diziyi ekle" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Diziyi temizle" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Çizelgedeki Dizi:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Günlük istatistikleri" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Seçili zaman aralığı:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seçin." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Sonuçlar sorgu metnine göre gruplandırılır." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Sorgu çözümleyici" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d saniye" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d dakika" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "İzlemeyi başlat" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Yönergeler/Ayarlama" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Çizelgeleri sürüklemeyi (yeniden düzenlemeyi) bitir" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Çizelgeleri sürüklemeyi etkinleştir" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Yenileme oranı" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Çizelge sütunu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Çizelge ayarlaması" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık " -"ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Varsayılana sıfırla" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12238,9 +12240,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " -"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" -"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" +"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. " +"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:316 @@ -12249,14 +12251,14 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " -"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" +"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: setup/lib/index.lib.php:318 @@ -12299,24 +12301,24 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." msgid "Wrong data" msgstr "Yanlış veri" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Yer imi oluşturulmadı" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12325,19 +12327,11 @@ msgstr "" "%s tablosu benzersiz bir sütun içermiyor. Izgara düzenleme, işaretleme " "kutusu, Düzenle, Kopyala ve Sil özellikleri kullanılabilir değil." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bu SQL sorgusunu işaretle" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etiket:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Görüntülemek için veri yok" @@ -12544,31 +12538,31 @@ msgstr "Görüntülemek için sütun seçin:" msgid "No column selected." msgstr "Seçilen sütun yok." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tablosu için izleme raporu" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Sürüm %1$s oluşturuldu, %2$s için izleme aktif." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde devre dışı bırakıldı." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde aktif edildi." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL ifadeleri çalıştırıldı." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12577,115 +12571,115 @@ msgstr "" "çalıştırabilirsiniz. Lütfen bunu yapmak için izinlerinizin olduğundan emin " "olun." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL ifadeleri dışa aktarıldı. Lütfen dökümü kopyalayın ya da çalıştırın." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "İzlenen veri tanımlaması başarılı olarak silindi" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "İzlenen veri işlemesi başarılı olarak silindi" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "İzleme ifadeleri" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "%4$s %5$s kullanıcısına göre %2$s ile %3$s arası tarihler ile %1$s göster" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Rapordan izlenen veri satırını sil" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Veri yok" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Tarih" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Veri tanımlama ifadesi" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Veri işleme ifadesi" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dökümü (dosya indirme)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL dökümü" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL yürütme" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "%s olarak dışa aktar" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Sürümleri göster" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s için izlemeyi devre dışı bırak" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Hemen devre dışı bırak" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s için izlemeyi aktif et" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Hemen aktif et" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "%1$s / %2$s sürümünü oluştur" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Bu veri tanımlama ifadelerini izle:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Bu veri işleme ifadelerini izle:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Sürüm oluştur" @@ -13077,8 +13071,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı " "%%%s. Bu %%80'in üzerinde olmalıdır" @@ -13229,8 +13223,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Tüm sıralamaların %%%s'i geçici tablolara sebep olur, bu değer %%10'dan " "düşük olmalıdır." @@ -13984,6 +13978,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "Headers every %s rows" +#~ msgstr "Her %s satırda bir başlıklar" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14281,9 +14278,9 @@ msgstr "concurrent_insert 0'a ayarlı" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Bu [kbd]iç içe koymaya[/kbd] ayarlandığında, tablo isimlerinin kod adları " #~ "tabloları $cfg['LeftFrameTableSeparator'] yönergesine göre sadece bölmek/" @@ -14510,12 +14507,12 @@ msgstr "concurrent_insert 0'a ayarlı" #~ "Eğer D işlenirse, varsayılan 0'dır. Eğer M işlenirse, varsayılan 10'dur." #~ msgid "" -#~ "A small (single-precision) floating-point number. Allowable values are " -#~ "-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " +#~ "A small (single-precision) floating-point number. Allowable values are -" +#~ "3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " #~ "3.402823466E+38." #~ msgstr "" -#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler " -#~ "-3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " +#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler -" +#~ "3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " #~ "3.402823466E+38'e." #~ msgid "" diff --git a/po/tt.po b/po/tt.po index e89b17690e..3be7d4a7e9 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar \n" -"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Ezläw" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,21 +75,21 @@ msgstr "Ezläw" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Äydä" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Tezeş adı" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Açıqlama" @@ -106,7 +106,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." @@ -136,7 +136,7 @@ msgstr "Tüşämä açıqlaması" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -161,7 +161,7 @@ msgstr "Alan iseme" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Töre" @@ -178,7 +178,7 @@ msgstr "Töre" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Buş" @@ -193,7 +193,7 @@ msgstr "Buş" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Töpcay" @@ -235,9 +235,9 @@ msgstr "Açıqlama" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Yuq" @@ -262,9 +262,9 @@ msgstr "Yuq" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Äye" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tüşämä" @@ -407,7 +407,7 @@ msgstr "Tüşämä tikşerü" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Biremlek" @@ -416,18 +416,18 @@ msgstr "Biremlek" msgid "Last version" msgstr "Server söreme" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 #, fuzzy msgid "Created" msgstr "Yarat" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Torış" @@ -440,7 +440,7 @@ msgstr "Torış" msgid "Action" msgstr "Eş" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Kürsät" @@ -456,11 +456,11 @@ msgstr "" msgid "Drop" msgstr "Beter" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -469,11 +469,11 @@ msgstr "" msgid "Versions" msgstr "Farsíça" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" @@ -639,8 +639,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:250 import.php:516 @@ -680,7 +680,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" @@ -702,7 +702,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -919,7 +919,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." @@ -929,7 +929,7 @@ msgstr "\"DROP DATABASE\" cönläläre sünderelgän." msgid "Do you really want to execute \"%s\"?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1032,8 +1032,8 @@ msgstr "Bu xoquqlarnı yöklä" msgid "Removing Selected Users" msgstr "Saylanğan qullanuçı beterü" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1176,13 +1176,13 @@ msgstr "Bayt" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1223,7 +1223,7 @@ msgid "Traffic" msgstr "Taşım" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1247,13 +1247,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Buş" @@ -1353,7 +1354,7 @@ msgstr "Bäyläneşlär buyınça töp mömkinleklär" msgid "Current settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1443,7 +1444,7 @@ msgstr "SQL Centekläw" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Waqıt" @@ -1553,7 +1554,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" @@ -1618,7 +1619,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Cirle" @@ -1802,7 +1803,7 @@ msgstr "SQL-soraw" msgid "Show query box" msgstr "SQL-soraw" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1815,7 +1816,7 @@ msgstr "Tözätü" msgid "No rows selected" msgstr "Kertemnär sayladı" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1907,7 +1908,7 @@ msgstr "Data pointer olılığı" msgid "Ignore" msgstr "Qarama" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1925,7 +1926,7 @@ msgstr "Yul ara bilgese" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2472,31 +2473,31 @@ msgstr "säğät sayın" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Artıp" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2657,14 +2658,14 @@ msgstr "Küzätü" msgid "Delete the matches for the %s table?" msgstr "Tüşämä eçtälegen çığaru" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Sal" @@ -2774,17 +2775,11 @@ msgstr "yatqırıp (başlıqlar almaşıp)" msgid "vertical" msgstr "bastırıp" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Tamğalanğan soraw cibärü" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Qullanası tezeş" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2812,98 +2807,98 @@ msgstr "Qullanası tezeş" msgid "Options" msgstr "Eşkärtü" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tulı Mätennär" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 #, fuzzy msgid "Relational key" msgstr "Bäyläneşlär sxeme" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Bäyläneşlär sxeme" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Üter" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Törle buluı bar. [doc@faq3-11]YBS 3.11[/doc] qarísı" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "sorawda" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "tulayım" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2912,8 +2907,8 @@ msgstr "Soraw eşkärtü %01.4f sek aldı" msgid "With selected:" msgstr "Saylanğannı:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2924,48 +2919,48 @@ msgstr "Saylanğannı:" msgid "Check All" msgstr "Saylap Beter" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Bastıru küreneşe" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -3041,38 +3036,38 @@ msgstr "Açqıç bilgelänmäde!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Tezeşlär" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Qabatlanu sanı" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Tezü cayı" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Açıqlama" @@ -3113,7 +3108,7 @@ msgstr "Qaraş" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Tözeleş" @@ -3265,18 +3260,18 @@ msgstr[1] "Kertemnär sayladı" msgid "Error while creating PDF:" msgstr "Eçtälekne uqu xoquqı." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Berär genä dä tüşämä yuq" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Tüşämä tikşerü" @@ -3526,7 +3521,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3629,14 +3624,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3881,7 +3876,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3944,7 +3939,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Engine" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -4425,8 +4420,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5002,9 +4997,8 @@ msgstr "Bitneñ sanı:" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5791,8 +5785,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5999,8 +5993,8 @@ msgstr "Tüşämä centekläw" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -6018,8 +6012,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6123,8 +6117,8 @@ msgstr "Cömlä" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -6145,8 +6139,8 @@ msgstr "Üzennän tözälü ısulı" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6343,8 +6337,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Atama:" @@ -6764,7 +6758,7 @@ msgstr "Biremleklär" msgid "Table(s):" msgstr "Tüşämä" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6820,8 +6814,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7355,8 +7349,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7374,7 +7368,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." @@ -7499,12 +7493,12 @@ msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7559,7 +7553,7 @@ msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7902,17 +7896,17 @@ msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tözeleşen genä" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Eçtälegen genä" @@ -8087,8 +8081,8 @@ msgstr "%s siña İsäñme di" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8370,7 +8364,7 @@ msgstr "Berençe yulda alannarnıñ iseme çığarası" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8378,7 +8372,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8396,7 +8390,7 @@ msgstr "PHP Söreme" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9579,7 +9573,7 @@ msgstr "Üzençälek" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Östämä" @@ -9754,7 +9748,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Farsíça" @@ -10220,8 +10214,8 @@ msgstr "Qullanuçılar tezmäse" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " @@ -10236,57 +10230,272 @@ msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." msgid "You have added a new user." msgstr "Yana qullanuçı östälände." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekund sayın" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "totıla" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Kerem Nöfüse" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Tüşämä Saylaw" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Soraw töre" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "%s alan östäw" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Biremlekne bolay atap quy" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Tüşämä Saylaw" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Tüşämä adı yaraqsız" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Yaña qullanuçı östäw" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL-soraw" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Şmb" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Yañart" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Add/Delete Field Columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL qaytarışı" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Ürçätkeç:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Eçtälek bireme" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Torış" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Tulayım" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Waqıt" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Waqıt" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bu SQL-sorawğa tamğa quy" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Yarlıq" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10308,10 +10517,6 @@ msgstr "Täqwim" msgid "Bookmark this SQL query:" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Şulay uq atalğan bitbilgelärne almaştırası" @@ -10389,8 +10594,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " -"%squllanmada%s uqıp bula." +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" +"squllanmada%s uqıp bula." #: libraries/structure.lib.php:68 tbl_operations.php:311 #, php-format @@ -10444,7 +10649,7 @@ msgstr "Check overheaded" msgid "Sort" msgstr "Tezü" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10613,7 +10818,7 @@ msgstr "Uñışlı" msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10785,7 +10990,7 @@ msgstr "ZIP-tuplama eçendä xata:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" @@ -10844,7 +11049,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Ğädäti Çinçä" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10918,52 +11123,52 @@ msgstr "Yarat" msgid "Active options" msgstr "Tüşämä köyläneşe" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "\"%s\" atlı tüşämä beterelde" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "bit" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Biremdän alu" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Kertemnär sayladı" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yaña tezeş yaratu" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İreşü iseme" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Kertemnär sayladı" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10993,7 +11198,7 @@ msgstr "Eçke bäyläneş" msgid "Relation deleted" msgstr "Bäyläneşkä küzätü" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11418,206 +11623,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "%s alan östäw" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Biremlekne bolay atap quy" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Tüşämä Saylaw" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Tüşämä adı yaraqsız" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Yaña qullanuçı östäw" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL-soraw" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Kerem Nöfüse" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Tüşämä Saylaw" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Soraw töre" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "sekund sayın" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "totıla" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Şmb" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Yañart" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Add/Delete Field Columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12532,8 +12537,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12576,49 +12581,39 @@ msgstr "" msgid "Wrong data" msgstr "Biremleklär yuq" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "%s digän bitbilge yaratıldı" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bu SQL-sorawğa tamğa quy" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Yarlıq" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12860,148 +12855,148 @@ msgstr "Kürsätäse Alan saylaw" msgid "No column selected." msgstr "Kertemnär sayladı" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Eçtälek östäw/almaştıru xoquqı." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Biremleklär yuq" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Eçtälek" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Çığaru ısulı" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server söreme" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Server söreme" @@ -13382,8 +13377,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13515,8 +13510,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -14217,6 +14212,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Tamğalanğan soraw cibärü" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ug.po b/po/ug.po index ec1d3fc026..3c60238ab5 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2012-11-05 10:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur \n" -"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.3-dev\n" @@ -49,7 +49,7 @@ msgid "Search:" msgstr "ئىزدەش" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -78,21 +78,21 @@ msgstr "ئىزدەش" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "ئىجرا قىلىش" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "قىممەت ئىسمى" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "ئىزاھات" @@ -109,7 +109,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" @@ -139,7 +139,7 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "سۆزلەم" @@ -162,7 +162,7 @@ msgstr "سۆزلەم" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "تۈرى" @@ -179,7 +179,7 @@ msgstr "تۈرى" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "بوش" @@ -194,7 +194,7 @@ msgstr "بوش" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "ئەندىز" @@ -236,9 +236,9 @@ msgstr "ئىزاھلار" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "يوق" @@ -263,9 +263,9 @@ msgstr "يوق" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "بولدى" @@ -308,8 +308,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: db_printview.php:47 db_tracking.php:79 db_tracking.php:198 #: libraries/Menu.class.php:190 libraries/config/messages.inc.php:510 @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "جەدۋەل" @@ -402,7 +402,7 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "ساندان" @@ -410,17 +410,17 @@ msgstr "ساندان" msgid "Last version" msgstr "ېيڭى نەشىر" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "قۇرۇش" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "يېڭلاش" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "ھالەت" @@ -433,7 +433,7 @@ msgstr "ھالەت" msgid "Action" msgstr "ئامال" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "كۆرسىتىش" @@ -449,11 +449,11 @@ msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" msgid "Drop" msgstr "ئۆچۈرۈش" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "پائال" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "پائالسىز" @@ -461,11 +461,11 @@ msgstr "پائالسىز" msgid "Versions" msgstr "نەشىر" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "ئىزلاش خاتىرىسى" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "تۈزۈلمە رەسىمى" @@ -624,11 +624,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -670,7 +670,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" @@ -692,7 +692,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -882,8 +882,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: index.php:521 #, php-format @@ -899,7 +899,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن." @@ -909,7 +909,7 @@ msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكل msgid "Do you really want to execute \"%s\"?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "ساندان تولۇق ئۆچۈرۈلدى!" @@ -1008,8 +1008,8 @@ msgstr "ھوقۇقسىز" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1146,13 +1146,13 @@ msgstr "بايت" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1195,7 +1195,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1219,13 +1219,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "يوق" @@ -1324,7 +1325,7 @@ msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" msgid "Current settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1417,7 +1418,7 @@ msgstr "SQL ئىزاھى" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "ۋاقىت" @@ -1528,7 +1529,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "كىرگۈزۈش" @@ -1597,7 +1598,7 @@ msgid "Cancel" msgstr "بىكار قىلىش" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1772,7 +1773,7 @@ msgstr "" msgid "Show query box" msgstr "SQL سورىقى" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1785,7 +1786,7 @@ msgstr "تەھىرلەش" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1877,7 +1878,7 @@ msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىك msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1895,7 +1896,7 @@ msgstr "قۇر ئالماشۇرۇش بەلگىسى" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2394,31 +2395,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ئارتىش" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2575,14 +2576,14 @@ msgstr "كۆزەت" msgid "Delete the matches for the %s table?" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "ئۆچۈرۈش" @@ -2689,16 +2690,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2725,91 +2721,91 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial import" msgid "Partial texts" msgstr "بۆلۈپ كىرگۈزىش" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[/doc] غا قاراڭ." -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "ئۇمۇمىي" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2818,8 +2814,8 @@ msgstr "" msgid "With selected:" msgstr "تاللانغىنى:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2830,49 +2826,49 @@ msgstr "تاللانغىنى:" msgid "Check All" msgstr "ھەممىنى تاللاش" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "چىقىرىش" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" @@ -2951,38 +2947,38 @@ msgstr "index قىممىتى بەلگىلەنمىگەن!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "تېزىسلار" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "تۈپ سان" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "تاسقاش" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "ئىزاھات" @@ -3022,7 +3018,7 @@ msgstr "قاراش" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "تۈزۈلىشى" @@ -3164,19 +3160,19 @@ msgstr[0] "%1$d قۇر قوشۇلدى." msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not save recent table" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Tracked tables" msgid "Recent tables" msgstr "ئىزلانغان جەدۋەل" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "Tracked tables" msgid "There are no recent tables" @@ -3423,7 +3419,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3522,14 +3518,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3773,7 +3769,7 @@ msgstr "" msgid "Max: %s%s" msgstr "ئەڭ چوڭ:%s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3834,7 +3830,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ئىچكى بىرلىشىش" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" @@ -4310,8 +4306,8 @@ msgstr "" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4859,9 +4855,8 @@ msgstr "" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5612,8 +5607,8 @@ msgstr "" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5810,8 +5805,8 @@ msgstr "جەدۋەل تەھلىلى" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5828,8 +5823,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -5926,8 +5921,8 @@ msgstr "" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5946,8 +5941,8 @@ msgstr "" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6137,8 +6132,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6558,7 +6553,7 @@ msgstr "ساندان" msgid "Table(s):" msgstr "جەدۋەل" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6614,8 +6609,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7134,8 +7129,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7153,7 +7148,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7273,11 +7268,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7330,7 +7325,7 @@ msgstr "جەدۋەلنى ئوڭشاش" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7666,17 +7661,17 @@ msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "تۈزىلىشىنىلا" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "ئۇچۇرنىلا" @@ -7845,8 +7840,8 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -8120,7 +8115,7 @@ msgstr "خەت ئايرىش بەلگىسى" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8128,7 +8123,7 @@ msgstr "ئاساسىي ماشىنا" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8146,7 +8141,7 @@ msgstr "PHPنۇسخىسى" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9264,7 +9259,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9433,7 +9428,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9881,8 +9876,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -9893,58 +9888,270 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "سېكنۇت" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "مىنۇت" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "ھەممىنى تاللاش" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "تەكشۈرۈش" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Routines" +msgid "Add chart" +msgstr "دائىملىق" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select All" +msgid "Select series:" +msgstr "ھەممىنى تاللاش" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Routines" +msgid "Add this series" +msgstr "دائىملىق" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "يېڭلاش" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "Chart columns" +msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "ھاسىللاش" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "سانلىق مەلۇمات ھۆججىتىنىڭ ئېشىش چوڭ-كىچىكلىكى" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "شەنبە" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "يىغىندىسى" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "ۋاقىت" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "ۋاقىت" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "ئاچقۇچلۇق ئېمزا" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9963,10 +10170,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10094,7 +10297,7 @@ msgstr "مەزمۇن بارلارنى تاللاش" msgid "Sort" msgstr "تۈرلەش" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10254,7 +10457,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10404,7 +10607,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" @@ -10460,7 +10663,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10536,43 +10739,43 @@ msgstr "قۇرۇش" msgid "Active options" msgstr "ئامال" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "بەت سانى" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "Keyname" msgid "New page name: " msgstr "قىممەت ئىسمى" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10602,7 +10805,7 @@ msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" msgid "Relation deleted" msgstr ".باغلانمىلار ئۆچۈرۈلدى" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "ساقلاشتا خاتالىق كۆرۈلدى." @@ -11014,203 +11217,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Routines" -msgid "Add chart" -msgstr "دائىملىق" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select All" -msgid "Select series:" -msgstr "ھەممىنى تاللاش" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Routines" -msgid "Add this series" -msgstr "دائىملىق" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "ھەممىنى تاللاش" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "تەكشۈرۈش" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "سېكنۇت" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "مىنۇت" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "يېڭلاش" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete columns" -msgid "Chart columns" -msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12097,8 +12103,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12139,47 +12145,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "قۇرۇلغان خەتكۈچ %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "ئاچقۇچلۇق ئېمزا" - # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك #: tbl_chart.php:38 #, fuzzy @@ -12417,149 +12413,149 @@ msgstr "سۆزلەمنى كۆرسەتمەسلىك" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "نەشىرنى قۇىماق" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "نەشىرنى قۇىماق" @@ -12940,8 +12936,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13072,8 +13068,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/uk.po b/po/uk.po index eac555ae38..ce12c13ffb 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-02-13 18:54+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.5-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Шукати" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -77,21 +77,21 @@ msgstr "Шукати" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Вперед" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Назва ключа" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Опис" @@ -110,7 +110,7 @@ msgstr "" "файл %s недоступний на сервері, будь ласка завітайте на www.phpmyadmin.net " "за додатковою інформацією." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Базу даних %1$s створено." @@ -140,7 +140,7 @@ msgstr "Коментарі таблиці" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Стовпчик" @@ -163,7 +163,7 @@ msgstr "Стовпчик" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тип" @@ -180,7 +180,7 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Нуль" @@ -195,7 +195,7 @@ msgstr "Нуль" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "По замовчуванню" @@ -237,9 +237,9 @@ msgstr "Коментарі" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ні" @@ -264,9 +264,9 @@ msgstr "Ні" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Так" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Таблиця" @@ -401,7 +401,7 @@ msgstr "Відслідковувані таблиці" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "База даних" @@ -409,17 +409,17 @@ msgstr "База даних" msgid "Last version" msgstr "Остання версія" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Створено" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Оновлено" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Стан" @@ -432,7 +432,7 @@ msgstr "Стан" msgid "Action" msgstr "Дія" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Показати" @@ -449,12 +449,12 @@ msgid "Drop" msgstr "Знищити" # активна -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "активний" # не активна -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "не активний" @@ -462,11 +462,11 @@ msgstr "не активний" msgid "Versions" msgstr "Версії" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Звіт трекінгу (відстеження)" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Знімок структури" @@ -625,8 +625,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Імовірно ви намагаєтесь завантажити занадто великий файл. Будь ласка " "зверніться до %sдокументації%s для знаходження шляхів вирішення цієї " @@ -676,7 +676,7 @@ msgstr "" "Неможливо завантажити імпортовані плагіни, будь ласка перевірте ваше " "інсталювання!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створена" @@ -703,7 +703,7 @@ msgstr "" "phpMyAdmin не зможе закінчити цей імпорт якщо Ви на збільшите час виконання " "PHP скриптів." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -927,10 +927,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до " -"%sdocumentation%s." +"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до %" +"sdocumentation%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." @@ -939,7 +939,7 @@ msgstr "Оператори \"DROP DATABASE\" заборонені." msgid "Do you really want to execute \"%s\"?" msgstr "Ви дійсно бажаєте виконати \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Ви збираєтесь здійснити ЗНИЩЕННЯ БД!" @@ -1023,8 +1023,8 @@ msgstr "Перезавантаження прав" msgid "Removing Selected Users" msgstr "Видалення відмічених користувачів" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Закрити" @@ -1151,13 +1151,13 @@ msgstr "Б" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1196,7 +1196,7 @@ msgid "Traffic" msgstr "Трафік" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Налаштування" @@ -1216,13 +1216,14 @@ msgstr "Додати графік до сітки" msgid "Please add at least one variable to the series" msgstr "Будь ласка додайте щонайменше одну змінну до ряду" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Жодного" @@ -1265,8 +1266,8 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" -"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за " -"%d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " +"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за %" +"d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " "залежності від вашої системи." #: js/messages.php:128 @@ -1322,7 +1323,7 @@ msgstr "Змінити налаштування" msgid "Current settings" msgstr "Поточні налаштування" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Заголовок діаграми" @@ -1407,7 +1408,7 @@ msgstr "Тлумачити вихідні дані" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Час" @@ -1504,7 +1505,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імпорт" @@ -1561,7 +1562,7 @@ msgid "Cancel" msgstr "Скасувати" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Завантаження" @@ -1710,7 +1711,7 @@ msgstr "Сховати блок запиту" msgid "Show query box" msgstr "Показати блок запиту" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1723,7 +1724,7 @@ msgstr "Редагувати" msgid "No rows selected" msgstr "Рядків не вибрано" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1807,7 +1808,7 @@ msgstr "Вміст точки даних" msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "Копіювати" @@ -1823,7 +1824,7 @@ msgstr "Відрізок" msgid "Polygon" msgstr "Полігон" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "Геометрія" @@ -2313,33 +2314,33 @@ msgstr "за годину" msgid "per day" msgstr "за день" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Існуючий файл конфігурації (%s) не читабельний." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Невірні права доступу до конфігураційного файлу, він не повинен бути " "доступним для всіх!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Розмір шрифту" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Зростаючий" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2495,14 +2496,14 @@ msgstr "Переглянути" msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Видалити" @@ -2593,16 +2594,11 @@ msgstr "горизонтальному (повернуті заголовки)" msgid "vertical" msgstr "вертикальному" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Заголовки кожні %s рядків" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Сортувати за ключем" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2629,91 +2625,91 @@ msgstr "Сортувати за ключем" msgid "Options" msgstr "Параметри" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "Часткові тексти" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "Повні тексти" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Ключ відношення" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "Стовпчик відображення зв'язків" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Показати двійковий вміст" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "Показати вміст BLOB-ОБ'ЄКТІВ" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Показувати двійковий вміст як HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "Сховати перетворення" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "Формат WKT (well known text)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "Формат WKB (well known binary)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Вбити" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FAQ 3.11 [/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "по запиту" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Подання має щонайменше цю кількість рядків. Будь-ласка звернітся до " -"%sдокументації%s." +"Подання має щонайменше цю кількість рядків. Будь-ласка звернітся до %" +"sдокументації%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Показано записи" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "всього" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2722,8 +2718,8 @@ msgstr "Запит виконувався %01.4f сек" msgid "With selected:" msgstr "З відміченими:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2734,45 +2730,45 @@ msgstr "З відміченими:" msgid "Check All" msgstr "Відмітити все" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "Створити подання" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Операції з результатами запиту" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Версія для друку" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Подання для друку (з повними текстами)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "Відобразити діаграму" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "Візуалізація даних ГІС" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Посилання не знайдено" @@ -2849,38 +2845,38 @@ msgstr "Індекс не визначено!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Індекси" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Запакований" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кількість елементів" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Порівняння" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Коментар" @@ -2922,7 +2918,7 @@ msgstr "Подання" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3070,15 +3066,15 @@ msgstr[2] "%1$d рядків вставлено." msgid "Error while creating PDF:" msgstr "Помилка при створенні PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Неможливо зберегти останню таблицю" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Нещодавні таблиці" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Нещодавніх таблиць немає" @@ -3322,7 +3318,7 @@ msgid "Maximum rows to plot" msgstr "Максимальна кількість рядків для побудови графіку" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Огляд зовнішніх значень" @@ -3429,14 +3425,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3676,7 +3672,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3737,7 +3733,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "в рядок" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профілювання" @@ -4215,8 +4211,8 @@ msgstr "CHAR редагування стовпців" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4622,8 +4618,8 @@ 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 "" -"Порядок сортування елементів у випадаючому списку зовнішніх ключів; " -"[kbd]вміст[/kbd] - пов'язані дані, [kbd]id[/kbd] - ключі" +"Порядок сортування елементів у випадаючому списку зовнішніх ключів; [kbd]" +"вміст[/kbd] - пов'язані дані, [kbd]id[/kbd] - ключі" #: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" @@ -4771,13 +4767,12 @@ msgstr "Заголовки сторінки" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" -"Вкажіть рядку заголовка браузера текст. Відповідно до " -"[doc@cfg_TitleTable]documentation[/doc] для магічних рядків, які можуть " -"використовуватися для отримання спеціальних значень." +"Вкажіть рядку заголовка браузера текст. Відповідно до [doc@cfg_TitleTable]" +"documentation[/doc] для магічних рядків, які можуть використовуватися для " +"отримання спеціальних значень." #: libraries/config/messages.inc.php:192 #: libraries/navigation/NavigationHeader.class.php:204 @@ -5217,8 +5212,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Кількість байтів, що дозволяється виділяти під сценарій, наприклад. " -"[kbd]32M[/kbd] ([kbd]0[/kbd] без обмежень)" +"Кількість байтів, що дозволяється виділяти під сценарій, наприклад. [kbd]32M" +"[/kbd] ([kbd]0[/kbd] без обмежень)" #: libraries/config/messages.inc.php:296 msgid "Memory limit" @@ -5613,8 +5608,8 @@ msgstr "Таблиця закладок" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" #: libraries/config/messages.inc.php:379 @@ -5699,9 +5694,8 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Детальніше дивіться на [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/" -"a]" +"Детальніше дивіться на [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"PMA bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5847,8 +5841,8 @@ msgstr "Нещодавно використані таблиці" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"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:421 @@ -5865,8 +5859,8 @@ msgstr "Команда SHOW DATABASES" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]authentication " "types[/a] для прикладу" @@ -5975,8 +5969,8 @@ msgstr "Стеження за виразами" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" #: libraries/config/messages.inc.php:446 @@ -5996,8 +5990,8 @@ msgstr "Автоматично створювати версії" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" #: libraries/config/messages.inc.php:450 @@ -6203,8 +6197,8 @@ msgstr "" "При наявності виділеного імені користувача, пропишіть його тут (по " "замовчуванню використовується [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Ім'я користувача" @@ -6632,7 +6626,7 @@ msgstr "База(и) даних:" msgid "Table(s):" msgstr "Таблиця(ь):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Рядки:" @@ -6681,13 +6675,13 @@ msgstr ", @TABLE@ буде заміщено ім'ям таблиці" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значення обробляється функцією %1$sstrftime%2$s, завдяки чому можлива " "вставка поточної дати і часу. Додатково можуть бути використані наступні " -"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у " -"%4$sFAQ%5$s." +"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у %4" +"$sFAQ%5$s." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7243,8 +7237,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Документацію і додаткову інформацію про PBXT можна знайти на %sДомашній " "сторінці PrimeBase XT%s." @@ -7262,7 +7256,7 @@ msgid "No data found for GIS visualization." msgstr "Дані для візуалізації GIS не знайдені." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." @@ -7383,11 +7377,11 @@ msgstr "" "Для переходу від значення до значення використовуйте TAB, або CTRL+стрілки - " "для переміщення куди завгодно" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Показ SQL-запиту" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Ідентифікатор доданого рядка: %1$d" @@ -7438,7 +7432,7 @@ msgstr "Додати префікс таблиці" msgid "Add prefix" msgstr "Додати префікс" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7790,17 +7784,17 @@ msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Лише структуру" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структуру і дані" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Лише дані" @@ -7963,8 +7957,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Ви, напевно, не створили файл конфігурації. Для його створення Ви можете " "використати %1$ssetup script%2$s." @@ -8223,7 +8217,7 @@ msgstr "Помістити імена колонок в перший рядок" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8231,7 +8225,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8249,7 +8243,7 @@ msgstr "Версія PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8416,8 +8410,8 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" "Зберігати поля з типом TIMESTAMP в UTC (дозволяє зберегти і перенести " -"поля з типом TIMESTAMP між серверами, що знаходяться в різних часових " -"зонах)" +"поля з типом TIMESTAMP між серверами, що знаходяться в різних часових зонах)" +"" #: libraries/plugins/export/ExportSql.class.php:1198 msgid "Constraints for dumped tables" @@ -9408,7 +9402,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Додатково" @@ -9573,7 +9567,7 @@ msgid "Library" msgstr "Бібліотека" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версія" @@ -10044,8 +10038,8 @@ msgstr "Огляд користувачів" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -10060,63 +10054,288 @@ msgstr "Вказаного користувача не знайдено в та msgid "You have added a new user." msgstr "Ви додали нового користувача." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d секунда" +msgstr[1] "%d секунди" +msgstr[2] "%d секунд" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d хвилина" +msgstr[1] "%d хвилини" +msgstr[2] "%d хвилин" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Статистика журналу" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Обраний проміжок часу:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Виконувати лише вирази SELECT, INSERT, UPDATE і DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Для кращого групування, видалити данні змінної у виразах INSERT" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Оберіть, з якого журналу має генеруватися статистика." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Результати, згруповані за текстом запиту." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Аналіз запиту" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Інструкції моніторингу" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin моніторинг може допомогти вам в оптимізації налаштувань сервера і " +"відстеженні часово інтенсивних запитів. Для останнього необхідно встановити " +"log_output у 'TABLE' і увімкнути або директиву slow_query_log, або " +"general_log. Зауважимо, однак, що general_log виробляє велику кількість " +"даних і збільшує навантаження на сервер до 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Нажаль, ваш сервер бази даних не підтримує журналювання в таблицю, яка є " +"необхідною умовою для аналізу журналів бази даних за допомогою PhpMyAdmin. " +"Журналювання в таблицю підтримуються MySQL 5.1.6 і вище. Однак, залишається " +"можливість використовувати функції графіків сервера." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Використання моніторингу:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"Ваш браузер буде оновлювати всі відображувані графіки через певні проміжки " +"часу. В розділі"Налаштування" можна додавати графіки і змінювати " +"частоту їх оновлення, або видаляти графіки використовуючи відповідну іконку " +"на кожному з них." + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Для відображення запитів з журналів, виберіть відповідний проміжок часу на " +"будь-якому графіку, натиснувши ліву кнопку миші і позначивши його. Після " +"підтвердження, буде завантажена таблиця згрупованих запитів, де можна " +"клацнути на будь-які вирази SELECT для їх подальшого аналізу." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Зверніть увагу:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Увімкнення директиви general_log може збільшити навантаження на сервер на 5-" +"15%. Також пам'ятайте, що генерування статистики з журналів є досить " +"інтенсивною задачею, тому бажано вибрати лише невеликий проміжок часу і " +"вимикати директиву general_log і чистити таблицю щойно в моніторингу більше " +"не має потреби." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Додати діаграму" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Вбудований графік" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Статусні змінні" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Виберіть серії:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Часто застосовуваний моніторинг" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "або введіть назву змінної:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Показати як значення різниці" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Застосувати дільник" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Додати до значень одиниці виміру" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Додати ці серії" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Очистити серії" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Серії в графіку:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Запустити монітор" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Інструкції/Налаштування" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Впорядкування/редагування діаграм завершено" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Включити підсвічування" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Частота оновлення" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Діаграма стовпців" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Розташування діаграми" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"Розташування діаграм зберігаються у локальному сховищі браузерів. Його можна " +"експортувати, якщо при налаштуванні виникають складнощі." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Скинути до початкових значень" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Результат SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Згенеровано" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Розмір виростання файлу даних" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Інше" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Старт" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Загальний час:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Час" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Закрити" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Час" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Закладка на даний SQL запит" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Мітка" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Надати всім користувачам доступ до цієї закладки" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10137,10 +10356,6 @@ msgstr "Очистити" msgid "Bookmark this SQL query:" msgstr "Закладка на даний SQL запит" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Надати всім користувачам доступ до цієї закладки" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замінити існуючу закладку з таким же ім'ям" @@ -10280,7 +10495,7 @@ msgstr "Перевірити чи мають таблиці накладні в msgid "Sort" msgstr "Посортувати" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Немає" @@ -10440,7 +10655,7 @@ msgstr "Ефективність" msgid "Table %1$s has been altered successfully" msgstr "Таблицю %1$s було успішно змінено" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Помилка запиту" @@ -10487,8 +10702,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " -"%sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" +"sописи перетворень%s" #: libraries/tbl_columns_definition_form.inc.php:171 msgid "Transformation options" @@ -10603,7 +10818,7 @@ msgstr "Помилка в ZIP-архіві:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Модифікації було збережено" @@ -10659,7 +10874,7 @@ msgstr "Переключити маленькі/великі" msgid "Toggle relation lines" msgstr "Змінити лінії зв'язків" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Імпортувати/Експортувати координати для PDF схеми" @@ -10719,43 +10934,43 @@ msgstr "Загальний" msgid "Active options" msgstr "Активовані опції" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Сторінка була створена" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Створення сторінки обламалось" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Сторінка" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Імпорт з вибраної сторінки" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Експорт у вибрану сторінку" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Створити нову сторінку та експортувати в неї" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Нова назва сторінки: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Експорт/Імпорт у масштабі" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "рекомендовано" @@ -10785,7 +11000,7 @@ msgstr "Внутрішній зв'язок доданий" msgid "Relation deleted" msgstr "Зв'язок видалений" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Помилка збереження координат Дизайнера." @@ -11233,216 +11448,6 @@ msgstr "" "початкових налаштувань, якщо не було помічено позитивного покращення в " "роботі." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Інструкції моніторингу" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin моніторинг може допомогти вам в оптимізації налаштувань сервера і " -"відстеженні часово інтенсивних запитів. Для останнього необхідно встановити " -"log_output у 'TABLE' і увімкнути або директиву slow_query_log, або " -"general_log. Зауважимо, однак, що general_log виробляє велику кількість " -"даних і збільшує навантаження на сервер до 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Нажаль, ваш сервер бази даних не підтримує журналювання в таблицю, яка є " -"необхідною умовою для аналізу журналів бази даних за допомогою PhpMyAdmin. " -"Журналювання в таблицю підтримуються MySQL 5.1.6 і вище. Однак, залишається " -"можливість використовувати функції графіків сервера." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Використання моніторингу:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"Ваш браузер буде оновлювати всі відображувані графіки через певні проміжки " -"часу. В розділі"Налаштування" можна додавати графіки і змінювати " -"частоту їх оновлення, або видаляти графіки використовуючи відповідну іконку " -"на кожному з них." - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Для відображення запитів з журналів, виберіть відповідний проміжок часу на " -"будь-якому графіку, натиснувши ліву кнопку миші і позначивши його. Після " -"підтвердження, буде завантажена таблиця згрупованих запитів, де можна " -"клацнути на будь-які вирази SELECT для їх подальшого аналізу." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Зверніть увагу:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Увімкнення директиви general_log може збільшити навантаження на сервер на " -"5-15%. Також пам'ятайте, що генерування статистики з журналів є досить " -"інтенсивною задачею, тому бажано вибрати лише невеликий проміжок часу і " -"вимикати директиву general_log і чистити таблицю щойно в моніторингу більше " -"не має потреби." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Додати діаграму" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Вбудований графік" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Статусні змінні" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Виберіть серії:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Часто застосовуваний моніторинг" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "або введіть назву змінної:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Показати як значення різниці" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Застосувати дільник" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Додати до значень одиниці виміру" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Додати ці серії" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Очистити серії" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Серії в графіку:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Статистика журналу" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Обраний проміжок часу:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Виконувати лише вирази SELECT, INSERT, UPDATE і DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Для кращого групування, видалити данні змінної у виразах INSERT" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Оберіть, з якого журналу має генеруватися статистика." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Результати, згруповані за текстом запиту." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Аналіз запиту" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d секунда" -msgstr[1] "%d секунди" -msgstr[2] "%d секунд" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d хвилина" -msgstr[1] "%d хвилини" -msgstr[2] "%d хвилин" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Запустити монітор" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Інструкції/Налаштування" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Впорядкування/редагування діаграм завершено" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Включити підсвічування" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Частота оновлення" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Діаграма стовпців" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Розташування діаграми" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"Розташування діаграм зберігаються у локальному сховищі браузерів. Його можна " -"експортувати, якщо при налаштуванні виникають складнощі." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Скинути до початкових значень" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12376,8 +12381,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Якщо використовується Git версія, запустіть [kbd]git pull[/kbd] :-)" -"[br]Остання стабільна версія %s, випущена %s." +"Якщо використовується Git версія, запустіть [kbd]git pull[/kbd] :-)[br]" +"Остання стабільна версія %s, випущена %s." #: setup/lib/index.lib.php:203 msgid "No newer stable version is available" @@ -12491,8 +12496,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Ви встановили [kbd]конфігураційний[/kbd] тип аутентифікації і ввели ім'я " "користувача і пароль для автоматичного входу в систему, що не є бажаним " @@ -12546,26 +12551,26 @@ msgstr "" msgid "Wrong data" msgstr "Неправильні дані" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Як стандартний запит на огляд даних використовується закладка \"%s\"." -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Закладка %s створена" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Показ у вигляді коду PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Перевірений SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12578,21 +12583,11 @@ msgstr "" "редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть " "не працювати після збереження." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблеми з індексами таблиці `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Закладка на даний SQL запит" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Мітка" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12816,33 +12811,33 @@ msgstr "Виберіть колонку для відображення" msgid "No column selected." msgstr "Рядків не вибрано" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Звіт про відстеження для таблиці `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Трекінг є активним." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Трекінг є активним." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL вирази виконано." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12850,116 +12845,116 @@ msgstr "" "Ви можете виконати дамп, створивши і використавши для цього тимчасову базу " "даних. Будь ласка, переконайтеся, що у вас є достатні привілеї." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Закоментуйте ці два рядка, якщо вони не потрібні." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL вирази експортовано. Будь ласка, скопіюйте дамп або виконайте його." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Знімок версії %s (SQL код)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Дані відстеження визначення успішно видалені" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Дані відстеження маніпуляцій успішно видалено" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Вирази відстеження" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Видалити рядки даних відстеження із звіту" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Немає даних" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Вираз визначення даних" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Вираз маніпуляції з даними" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL дамп (завантажити файл)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL дамп" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ця опція замінить вашу таблицю і дані в ній." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Виконання SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Експортувати як %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Показати версії" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Видалити дані спостереження для цієї таблиці" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Деактивувати зараз" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Активувати зараз" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Загальні можливості" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Відстежити наступні вирази визначення даних:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Відстежити наступні вирази маніпуляцій з даними:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Створити версію" @@ -13362,8 +13357,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Поточне співвідношення вільної пам'яті кешу запитів до загального розміру " "кешу запитів складає %s%%. Воно має перевищувати 80%%" @@ -13524,8 +13519,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% всіх сортувань викликає створення тимчасових таблиць, це значення має " "бути нижчим 10%%." @@ -13978,8 +13973,8 @@ msgstr "Збільшити {thread_cache_size}." #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -"Рівень успішних звернень в кеш потоку: %s%%, це значення має перевищувати " -"80%%" +"Рівень успішних звернень в кеш потоку: %s%%, це значення має перевищувати 80%" +"%" #: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" @@ -14288,6 +14283,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert встановлений у 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Заголовки кожні %s рядків" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -14773,8 +14771,8 @@ msgstr "concurrent_insert встановлений у 0" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " -#~ "%s запитів." +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %" +#~ "s запитів." #~ msgid "Chart generated successfully." #~ msgstr "Права успішно перезавантажено." diff --git a/po/ur.po b/po/ur.po index b523313a0a..16fa32b846 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-13 11:20+0200\n" "Last-Translator: Muhammad Kamran \n" "Language-Team: Urdu \n" -"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.6-dev\n" @@ -42,12 +42,11 @@ msgstr "" "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" #: browse_foreigners.php:182 -#| msgid "Search" msgid "Search:" msgstr "تلاش کريں" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +75,21 @@ msgstr "تلاش کريں" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "جائیں" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "کلید نام" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "تفصیل" @@ -110,7 +109,7 @@ msgstr "" "مسل%s نظام میں موجود نہیں ہے، مزید معلومات کے لیے www.phpmyadmin.net پر " "جائیں۔" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "ڈیٹا بیس %1$s بنا دیا گیا" @@ -140,7 +139,7 @@ msgstr "جدول تبصرے" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Command" msgid "Column" @@ -165,7 +164,7 @@ msgstr "کالم" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "قِسم" @@ -182,7 +181,7 @@ msgstr "قِسم" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "خالی" @@ -197,7 +196,7 @@ msgstr "خالی" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "طے شدہ" @@ -239,9 +238,9 @@ msgstr "تبصرہ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "نہیں" @@ -266,9 +265,9 @@ msgstr "نہیں" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "ہاں" @@ -322,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "جدول" @@ -406,7 +405,7 @@ msgstr "کھوج شدہ جداول" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "کوائفیہ" @@ -414,17 +413,17 @@ msgstr "کوائفیہ" msgid "Last version" msgstr "آخری نسخہ" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "بنایا" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "تازہ کی گئی" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "حالت" @@ -437,7 +436,7 @@ msgstr "حالت" msgid "Action" msgstr "عمل" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "دکھائیں" @@ -453,11 +452,11 @@ msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" msgid "Drop" msgstr "چھوڑیں" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "فعال" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "فعال نہیں ہے" @@ -465,11 +464,11 @@ msgstr "فعال نہیں ہے" msgid "Versions" msgstr "نسخے" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "کھوج رپورٹ" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "ساخت تصویر" @@ -632,14 +631,14 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " -"%sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" +"sdocumentation%s دیکھیں۔" #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -671,8 +670,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "درآمد کے لیے کوئی کوائف نہیں ملا۔ ممکن ہے کہ مسل نام بھیجا نہ گیا ہو یا مسل " -"سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ " -"دیکھیں[doc@faq1-16]عمومی سوالات 1.16[/doc]." +"سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ دیکھیں[doc@faq1-" +"16]عمومی سوالات 1.16[/doc]." #: import.php:447 msgid "" @@ -683,7 +682,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" @@ -709,7 +708,7 @@ msgstr "" "بہرحال آخری دفعہ کوائف صرفی نہیں ہوا، اس کا مطلب ہے کہ phpMyAdmin اس درآمد " "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -918,7 +917,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" @@ -928,7 +927,7 @@ msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" msgid "Do you really want to execute \"%s\"?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!" @@ -1023,8 +1022,8 @@ msgstr "استحقاق پھر لوڈ کرتے ہوئے" msgid "Removing Selected Users" msgstr "منتخب صارفین ہٹائے جارہے ہیں" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "بند کریں" @@ -1161,13 +1160,13 @@ msgstr "بائٹ" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "کلو بائٹ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "میگا بائٹ" @@ -1210,7 +1209,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1234,13 +1233,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1339,7 +1339,7 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Current settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Default" msgid "Chart Title" @@ -1433,7 +1433,7 @@ msgstr "SQL کی تفصیل بتائیں" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "وقت" @@ -1546,7 +1546,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "درآمد" @@ -1613,7 +1613,7 @@ msgid "Cancel" msgstr "منسوخ کریں" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "لوڈ کررہا ہے" @@ -1786,7 +1786,7 @@ msgstr "طلب خانہ چھپائیں" msgid "Show query box" msgstr "طلب خانہ دکھائیں" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1799,7 +1799,7 @@ msgstr "تدوین" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1889,7 +1889,7 @@ msgstr "" msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1907,7 +1907,7 @@ msgstr "سطریں کے آخر میں" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2062,8 +2062,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " -"%s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" +"s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:372 @@ -2404,31 +2404,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "فانٹ سائز" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "صعودی" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2582,14 +2582,14 @@ msgstr "براؤز" msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "حذف" @@ -2696,16 +2696,11 @@ msgstr "" msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2732,90 +2727,90 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "ثنائی مشمولات بطور HEX دکھائیں" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2824,8 +2819,8 @@ msgstr "" msgid "With selected:" msgstr "مع منتخب:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2836,49 +2831,49 @@ msgstr "مع منتخب:" msgid "Check All" msgstr "تمام پڑتال کریں" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "برآمد" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "چھپائی منظر" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "" @@ -2957,38 +2952,38 @@ msgstr "کوئی اشاریہ موجود نہیں!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "اشاریے" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "منفرد" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "باندھنا" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "درجہ تعلق داری" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "ترتیب" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "تبصرہ" @@ -3030,7 +3025,7 @@ msgstr "نقل جدول" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "ساخت" @@ -3175,19 +3170,19 @@ msgstr[1] "%1$d صفیں داخل ہوئیں۔" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not open file: %s" msgid "Could not save recent table" msgstr "مسل نہیں کھول سکتا: %s" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "حداول کی گنتی کریں" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no files to upload" msgid "There are no recent tables" @@ -3436,7 +3431,7 @@ msgid "Maximum rows to plot" msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3539,14 +3534,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3792,7 +3787,7 @@ msgstr "" msgid "Max: %s%s" msgstr "زیادہ سے زیادہ: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3853,7 +3848,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ان لائن" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "تفصیلات" @@ -4334,8 +4329,8 @@ msgstr "CHAR کالم تدوین" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4885,9 +4880,8 @@ msgstr "صفحہ عنوانات" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "براؤزر عنوان بار متن لکھیں۔ حوالہ کے لیے[doc@cfg_TitleTable]documentation[/" "doc] خاص قدریں حاصل کرنے کے لیے میجک سٹرنگ۔" @@ -4951,8 +4945,8 @@ msgid "" "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation" msgstr "" -"اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، " -"دیکھیں[doc@linked-tables]phpMyAdmin تشکیل ذخیرہ[/doc] دستاویزات میں" +"اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، دیکھیں" +"[doc@linked-tables]phpMyAdmin تشکیل ذخیرہ[/doc] دستاویزات میں" #: libraries/config/messages.inc.php:204 msgid "Changes tracking" @@ -5725,11 +5719,11 @@ msgstr "جدول نشان کریں" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" @@ -5803,8 +5797,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5816,8 +5810,8 @@ msgid "" "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" "مزید معلومات یہاں موجود ہے [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL " -"نقائص[/a]" +"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص" +"[/a]" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5843,8 +5837,8 @@ msgstr "کوائفیے چھپائیں" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5914,8 +5908,8 @@ msgstr "" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5965,8 +5959,8 @@ msgstr "صارف نام یاد کریں" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" #| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "نہیں کے لیے خالی چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] معاونت، مجوزہ[kbd]pma_bookmark[/kbd]" @@ -5985,8 +5979,8 @@ msgstr "" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" #: libraries/config/messages.inc.php:425 @@ -6022,8 +6016,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6038,8 +6032,8 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:434 msgid "Display columns table" @@ -6053,8 +6047,8 @@ msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -6101,11 +6095,11 @@ msgstr "" #: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]" @@ -6128,11 +6122,11 @@ msgstr "" #| msgid "" #| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" -"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: " -"[kbd]pma_designer_coords[/kbd]" +"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -6323,8 +6317,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6738,7 +6732,7 @@ msgstr "ڈیٹا بیس" msgid "Table(s):" msgstr "ٹیبل" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6787,8 +6781,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:341 @@ -7294,8 +7288,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7315,7 +7309,7 @@ msgid "No data found for GIS visualization." msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7437,11 +7431,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7494,7 +7488,7 @@ msgstr "جدول کوائف کو مسل سے بدلیں" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7833,17 +7827,17 @@ msgid "Drop the database (DROP)" msgstr "کوائفیہ چھوڑیں (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "صرف ساخت" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ساخت اور کوائف" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "کوائف صرف" @@ -8010,8 +8004,8 @@ msgstr "%s میں خوش آمدید" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -8274,13 +8268,13 @@ msgstr "کالم نام پہلے صف میں ڈالیں" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -8298,7 +8292,7 @@ msgstr "نسخے" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9420,7 +9414,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9591,7 +9585,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -10039,8 +10033,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: libraries/server_privileges.lib.php:3036 @@ -10051,58 +10045,282 @@ msgstr "" msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "سیکنڈ" +msgstr[1] "سیکنڈ" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "منٹ" +msgstr[1] "منٹ" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Query statistics" +msgid "Log statistics" +msgstr "طلب شماریات" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "سارا منتخب کریں" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Gather errors" +msgid "Query analyzer" +msgstr "نقائص اکھٹی کریں" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add chart" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "کوائفیہ ہٹائیں" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "SQL queries" +msgid "Select series:" +msgstr "SQL طلب" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "غلط جدول نام" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a New User" +msgid "Add this series" +msgstr "نیا صارف اضافہ کریں" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL طلب" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Startup" +msgid "Start Monitor" +msgstr "ابتدائیہ" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "نمایاں کرنے کو فعال کریں" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "تازہ کریں" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "طے شدہ قدر بحال کریں" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "بنائیں" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "ابتدائیہ" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "میزان" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "وقت" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "بند کریں" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "وقت" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "سرنامہ کلید" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10121,10 +10339,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10254,7 +10468,7 @@ msgstr "اوور ہیڈ جداول کی پڑتال کریں" msgid "Sort" msgstr "چھانٹیں" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10421,7 +10635,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -10569,7 +10783,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" @@ -10625,7 +10839,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10701,43 +10915,43 @@ msgstr "تخلیق کیا گیا" msgid "Active options" msgstr "عمل" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page number:" msgid "Page:" msgstr "صفحہ نمبر" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "Page number:" msgid "New page name: " msgstr "صفحہ نمبر" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10767,7 +10981,7 @@ msgstr "اندرونی ریلیشن شامل ہو گیا" msgid "Relation deleted" msgstr "ریلیشن حذف ہو گیا" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11178,215 +11392,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add chart" -msgstr "فیلڈ کالمز شامل یا ختم کریں" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "کوائفیہ ہٹائیں" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "SQL queries" -msgid "Select series:" -msgstr "SQL طلب" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "غلط جدول نام" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a New User" -msgid "Add this series" -msgstr "نیا صارف اضافہ کریں" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL طلب" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Query statistics" -msgid "Log statistics" -msgstr "طلب شماریات" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "سارا منتخب کریں" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Gather errors" -msgid "Query analyzer" -msgstr "نقائص اکھٹی کریں" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "سیکنڈ" -msgstr[1] "سیکنڈ" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "منٹ" -msgstr[1] "منٹ" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Startup" -msgid "Start Monitor" -msgstr "ابتدائیہ" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "نمایاں کرنے کو فعال کریں" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "تازہ کریں" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "فیلڈ کالمز شامل یا ختم کریں" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "طے شدہ قدر بحال کریں" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12278,8 +12283,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" #: setup/lib/index.lib.php:318 @@ -12322,47 +12327,37 @@ msgstr "" msgid "Wrong data" msgstr "کوائف" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "نشانی %s بنایا گیا" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "سرنامہ کلید" - #: tbl_chart.php:38 #, fuzzy #| msgid "data" @@ -12602,152 +12597,152 @@ msgstr "کالم دکھانے کے لیے انتخاب کریں" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "کھوج فعال ہے۔" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "کھوج فعال ہے۔" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "data" msgid "No data" msgstr "کوائف" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "کوائف نہیں ملا برائے %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "جنرل ریلیشن فیچرز" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -13127,8 +13122,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -13261,8 +13256,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/uz.po b/po/uz.po index b008360209..114f70f4c5 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-04-25 15:48+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \n" -"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Қидириш" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,21 +74,21 @@ msgstr "Қидириш" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Индекс номи" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Тавсифи" @@ -107,7 +107,7 @@ msgstr "" "Ушбу тизимда %s файли мавжуд эмас, мархамат, қўшимча маълумотларни олиш учун " "www.phpmyadmin.net сайтига ташриф буюринг" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s маълумотлар базаси тузилди." @@ -137,7 +137,7 @@ msgstr "Жадвал изоҳи" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Устун" @@ -160,7 +160,7 @@ msgstr "Устун" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тур" @@ -177,7 +177,7 @@ msgstr "Тур" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -192,7 +192,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Андоза" @@ -234,9 +234,9 @@ msgstr "Изоҳлар" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Йўқ" @@ -261,9 +261,9 @@ msgstr "Йўқ" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ҳа" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Жадвал" @@ -398,7 +398,7 @@ msgstr "Кузатилган жадваллар" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Маълумотлар базаси" @@ -406,17 +406,17 @@ msgstr "Маълумотлар базаси" msgid "Last version" msgstr "Охирги версия" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Тузилди" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Янгиланди" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Ҳолат" @@ -429,7 +429,7 @@ msgstr "Ҳолат" msgid "Action" msgstr "Амал" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Кўрсатиш" @@ -445,11 +445,11 @@ msgstr "Ушбу жадвал учун кузатув маълумотлари msgid "Drop" msgstr "Ўчириш" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "фаол" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "фаол эмас" @@ -457,11 +457,11 @@ msgstr "фаол эмас" msgid "Versions" msgstr "Версиялар" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Тузилма расми" @@ -625,14 +625,14 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " -"%sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" +"sдокументацияда%s келтирилган." #: import.php:250 import.php:516 msgid "Showing bookmark" @@ -679,7 +679,7 @@ msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" @@ -707,7 +707,7 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -914,8 +914,8 @@ msgstr "" #: index.php:468 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -"cookie-аутентификация ишлатилганда, конфигурацион файлдаги " -"$cfg[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." +"cookie-аутентификация ишлатилганда, конфигурацион файлдаги $cfg" +"[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." #: index.php:479 #, fuzzy @@ -963,7 +963,7 @@ msgstr "" "Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар " "ечими учун \"%s\"документация\"%s\" га қаранг." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." @@ -973,7 +973,7 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) msgid "Do you really want to execute \"%s\"?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -1076,8 +1076,8 @@ msgstr "Привилегиялар қайта юкланмоқда" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Ёпиш" @@ -1220,13 +1220,13 @@ msgstr "Байт" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1268,7 +1268,7 @@ msgid "Traffic" msgstr "Трафик" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1294,13 +1294,14 @@ msgstr "Тўрга боғлаб қўйиш" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Йўқ" @@ -1400,7 +1401,7 @@ msgstr "Бошқа созланишлар" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1496,7 +1497,7 @@ msgstr "Сўров таҳлили" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Вақт" @@ -1609,7 +1610,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1678,7 +1679,7 @@ msgid "Cancel" msgstr "Бекор қилиш" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy #| msgid "Load" msgid "Loading" @@ -1867,7 +1868,7 @@ msgstr "SQL сўровлари қутиси" msgid "Show query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1880,7 +1881,7 @@ msgstr "Таҳрирлаш" msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1976,7 +1977,7 @@ msgstr "Маълумотлар файли кўрсатгичи ҳажми" msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -1994,7 +1995,7 @@ msgstr "Қаторлар бўлувчиси" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2553,31 +2554,31 @@ msgstr "соатига" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Шрифт ўлчами" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ўсиш тартибида" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2733,14 +2734,14 @@ msgstr "Кўриб чиқиш" msgid "Delete the matches for the %s table?" msgstr "%s жадвалидаги мосликларни ўчирасизми?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Ўчириш" @@ -2845,17 +2846,11 @@ msgstr "горизонтал (айлантирилган сарлавҳалар) msgid "vertical" msgstr "вертикал" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Белгиланган сўровни бажариш" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2882,99 +2877,99 @@ msgstr "Индекс бўйича сортировка қилиш" msgid "Options" msgstr "Параметрлар" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Маълумотларни қисқартириб кўрсатиш" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Алоқадор калит" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Алоқадор майдон қиймати" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Иккилик маълумотларни кўрсатиш" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Ўгириш" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Тугатиш" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Тахминий бўлиши мумкин. [doc@faq3-11]\"FAQ 3.11\"[/doc]га қаранг" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "сўров бўйича" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "жами" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2983,8 +2978,8 @@ msgstr "Сўров %01.4f секунд вақт олди" msgid "With selected:" msgstr "Белгиланганларни:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2995,49 +2990,49 @@ msgstr "Белгиланганларни:" msgid "Check All" msgstr "Барчасини белгилаш" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Чоп этиш версияси" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Алоқа топилмади" @@ -3120,38 +3115,38 @@ msgstr "Индекс белгиланмаган!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индекслар" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Уникал" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Элементлар сони" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Таққослаш" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Изоҳ" @@ -3191,7 +3186,7 @@ msgstr "Намойиш" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Тузилиши" @@ -3343,19 +3338,19 @@ msgstr[1] "%1$d та қаторлар қўйилди." msgid "Error while creating PDF:" msgstr "Маълумотларни чақиришга рухсат беради" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "Жадвалларни санаш" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3613,7 +3608,7 @@ msgid "Maximum rows to plot" msgstr "Кўрсатиладиган қаторларнинг максимал сони" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" @@ -3718,14 +3713,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3971,7 +3966,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -4036,7 +4031,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профиллаштириш" @@ -4522,8 +4517,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/" -"Bzip2]bzip2[/a] ёрдамида сиқишни ёқиш" +"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Bzip2]" +"bzip2[/a] ёрдамида сиқишни ёқиш" #: libraries/config/messages.inc.php:27 msgid "Bzip2" @@ -4553,8 +4548,8 @@ msgstr "CHAR майдонларини таҳрирлаш" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5140,9 +5135,8 @@ msgstr "Саҳифа рақами: " #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5350,8 +5344,8 @@ 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] ёрдамида сиқишни ёқиш" +"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Gzip]gzip" +"[/a] ёрдамида сиқишни ёқиш" #: libraries/config/messages.inc.php:235 msgid "GZip" @@ -6021,11 +6015,11 @@ msgstr "Хатчўплар жадвали" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_column_info[/kbd]" @@ -6060,8 +6054,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Чекланган ҳуқуқларга эга бўлган махсус \"MySQL\" фойдаланувчиси тузилган, " -"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/" -"a]да мавжуд" +"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" +"да мавжуд" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -6101,8 +6095,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: " -"[kbd]pma_designer_coords[/kbd]" +"Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -6113,9 +6107,9 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Кўпроқ маълумот учун [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]\"PMA bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL " -"Bugs\"[/a]ларга қаранг" +"Кўпроқ маълумот учун [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"\"PMA bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" +"ларга қаранг" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -6143,8 +6137,8 @@ msgstr "Базаларни яшириш" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -6222,8 +6216,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -6278,8 +6272,8 @@ msgstr "Фойдаланувчи номини чақириб олиш" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни " "ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]" @@ -6298,11 +6292,11 @@ msgstr "SHOW DATABASES буйруғи" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]га қаранг" +"Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"аутентификация усуллари[/a]га қаранг" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -6339,8 +6333,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6426,8 +6420,8 @@ msgstr "Тавсиф" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" @@ -6455,8 +6449,8 @@ msgstr "Автоматик тиклаш режими" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" @@ -6668,8 +6662,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Фойдаланувчи" @@ -6828,8 +6822,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] қисишни ёқиш" +"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_" +"(file_format)]ZIP[/a] қисишни ёқиш" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -7130,7 +7124,7 @@ msgstr "Маълумотлар базалари" msgid "Table(s):" msgstr "Жадваллар" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7188,16 +7182,16 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " -"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" +"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:341 msgid "use this for future exports" @@ -7783,8 +7777,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7802,7 +7796,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." @@ -7936,11 +7930,11 @@ msgid "" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -7997,7 +7991,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Add prefix" msgstr "Индекс(лар)ни сақлаш" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8335,17 +8329,17 @@ msgid "Drop the database (DROP)" msgstr "Маълумотлар базасини ўчириш (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Фақат тузилиши" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Фақат маълумотлар" @@ -8516,8 +8510,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -8806,7 +8800,7 @@ msgstr "Майдон номларини биринчи қаторга жойла #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8814,7 +8808,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8832,7 +8826,7 @@ msgstr "PHP версиясм" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -10100,7 +10094,7 @@ msgstr "Атрибутлар" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Қўшимча" @@ -10275,7 +10269,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версия" @@ -10760,8 +10754,8 @@ msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -10776,60 +10770,286 @@ msgstr "Белгиланган фойдаланувчи привилегияла msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундига" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ишлатилмоқда" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Статискани кўрсатиш" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Жадвалларни танланг" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Сўров тури" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Индекс(лар)ни сақлаш" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Тобе сервер статуси жадвалини кўриш" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Жадвалларни танланг" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Жадвал номи нотўғри" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Янги фойдаланувчи қўшиш" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL сўровлари" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Бошлаш" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Белгилашни ёқиш" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Янгилаш" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR майдонидаги устунлар сони" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Хатоликларни бошқариш:" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Асл қийматларни тиклаш" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL сўрови натижаси" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Тузилган" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Маълумотлар файлларининг ошиш ҳажми" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Бошланғич" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Жами" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Вақт" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Ёпиш" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Вақт" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Ушбу SQL сўровига хатчўп тузиш" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Хатчўп белгиси" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Барча фойдаланувчиларга рухсат бериш" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10850,10 +11070,6 @@ msgstr "Тозалаш" msgid "Bookmark this SQL query:" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Барча фойдаланувчиларга рухсат бериш" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Шу номли хатчўпни алмаштириш" @@ -10992,7 +11208,7 @@ msgstr "Оптималлаштириш лозим бўлгн жадваллар msgid "Sort" msgstr "Сортировка қилиш" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -11164,7 +11380,7 @@ msgstr "Эффективлик" msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -11339,7 +11555,7 @@ msgstr "Ушбу ZIP архивда хатолик:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" @@ -11397,7 +11613,7 @@ msgstr "Тескари кўрсатиш" msgid "Toggle relation lines" msgstr "Алоқани танлаш учун расмда кўрсатилганикаби уланиш нуқтасига босинг:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-схемага/схемадан жадвал координаталарини импорт/экспорт қилиш" @@ -11473,51 +11689,51 @@ msgstr "Тузиш" msgid "Active options" msgstr "Жадвал параметрлари" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Саҳифа тузилди" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Саҳифа тузиб бўлмади" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "саҳифалар сони " -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файлларни импорт қилиш" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Масштаб" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Янги индекс тузиш" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Фойдаланувчи номи" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Масштаб" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "тавсия этилган" @@ -11547,7 +11763,7 @@ msgstr "Ички алоқа ўрнатилди" msgid "Relation deleted" msgstr "Алоқа ўчирилди" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Координаталарни сақлашда хатолик." @@ -12009,217 +12225,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Индекс(лар)ни сақлаш" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Тобе сервер статуси жадвалини кўриш" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Жадвалларни танланг" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Жадвал номи нотўғри" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Янги фойдаланувчи қўшиш" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL сўровлари" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Статискани кўрсатиш" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Жадвалларни танланг" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Сўров тури" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "секундига" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ишлатилмоқда" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Бошлаш" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Белгилашни ёқиш" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Янгилаш" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR майдонидаги устунлар сони" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Хатоликларни бошқариш:" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Асл қийматларни тиклаш" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12779,8 +12784,8 @@ msgstr "Очиқ файллар сони." #: server_status_variables.php:642 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб " -"\"fopen()\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" +"\" функцияси ёрдамида очилган файлга айтилади." #: server_status_variables.php:645 msgid "The number of tables that are open." @@ -12945,8 +12950,8 @@ msgid "" msgstr "" "Маълум бир вақтдандан кейин қониқтирилган жадвални блокировка қилишга бўлган " "сўровлар сони. Агар қиймат жуда катта бўлса ва унумдорлик бўйича муаммолар " -"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса " -"жадвал(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." +"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" +"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." #: server_status_variables.php:743 msgid "" @@ -13018,9 +13023,8 @@ msgstr "Конфигурацияни юклаб ёки сақлаб бўлмад #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " -#| "level directory as described in [a@../Documentation." -#| "html#setup_script]umentation[/a]. Otherwise you will be only able to " -#| "download or display " +#| "level directory as described in [a@../Documentation.html#setup_script]" +#| "umentation[/a]. Otherwise you will be only able to download or display " msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " @@ -13190,10 +13194,10 @@ msgstr "Янгироқ версия ҳали мавжуд эмас" #| msgid "" #| "s [a@?page=form&formset=features#tab_Security]option[/a] should be " #| "abled as it allows attackers to bruteforce login to any MySQL server. you " -#| "feel this is necessary, use [a@?page=form&" -#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "tection may not be reliable if your IP belongs to an ISP where usands of " -#| "users, including you, are connected to." +#| "feel this is necessary, use [a@?page=form&mset=features#tab_Security]" +#| "trusted proxies list[/a]. However, IP-based tection may not be reliable " +#| "if your IP belongs to an ISP where usands of users, including you, are " +#| "connected to." msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " @@ -13317,15 +13321,14 @@ msgstr "" #| " set the [kbd]config[/kbd] authentication type and included username " #| "password for auto-login, which is not a desirable option for live ts. " #| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your " -#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&" -#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or " -#| "[kbd]httpbd]." +#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=d#tab_Server]" +#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Сиз [kbd]config[/kbd] аутентификация усулини танлаб, ўз логинва паролингизни " "конфигурацион файлга ёзиб қўйдингиз ва у Сизга автоматик тарзда phpMyAdmin " @@ -13394,49 +13397,39 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус msgid "Wrong data" msgstr "Маълумотлар базаси мавжуд эмас" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "\"%s\" хатчўпи тузилди" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Ушбу SQL сўровига хатчўп тузиш" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Хатчўп белгиси" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13691,34 +13684,34 @@ msgstr "Кўрсатиладиган майдонни танлаш" msgid "No column selected." msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" жадвали учун кузатув ҳисоботи" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL сўрови бажарилди." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13726,125 +13719,125 @@ msgstr "" "Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун " "етарли привилегияларга эга бўлишингиз керак." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s версия расми (SQL коди)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Кузатиш операторлари" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Маълумотлар базаси мавжуд эмас" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Санани" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Маълумотлар таърифи операторини" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Маълумотларни бошқариш операторини" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL дампи (файлни юклаб олиш)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL дамп" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL бажаруви" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "\"%s\" деб экспорт қилиш" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Версияларни кўрсатиш" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаолсизлантириш" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Ҳозир фаолсизлантириш" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаоллаштириш" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ҳозир фаоллаштириш" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Версиясини тузиш" @@ -14229,8 +14222,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14365,8 +14358,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -15092,6 +15085,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Белгиланган сўровни бажариш" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -15372,9 +15370,9 @@ msgstr "Максимал уланишлар сони " #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Агар ушбу танловни [kbd]\"nested\"[/kbd] деб белгиласангиз, фақат жадвал " #~ "номининг тахаллуси конфигурацион файлдаги $cfg[\"LeftFrameTableSeparator" diff --git a/po/uz@latin.po b/po/uz@latin.po index 730ea0b526..87ec252b9d 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-07 17:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) \n" -"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Qidirish" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -76,21 +76,21 @@ msgstr "Qidirish" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Indeks nomi" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Tavsifi" @@ -107,7 +107,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ma`lumotlar bazasi tuzildi." @@ -137,7 +137,7 @@ msgstr "Jadval izohi" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -162,7 +162,7 @@ msgstr "Maydon nomlari" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tur" @@ -179,7 +179,7 @@ msgstr "Tur" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -194,7 +194,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Andoza" @@ -236,9 +236,9 @@ msgstr "Izohlar" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Yo‘q" @@ -263,9 +263,9 @@ msgstr "Yo‘q" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ha" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Jadval" @@ -408,7 +408,7 @@ msgstr "Kuzatilgan jadvallar" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Ma`lumotlar bazasi" @@ -416,17 +416,17 @@ msgstr "Ma`lumotlar bazasi" msgid "Last version" msgstr "Oxirgi vеrsiya" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Tuzildi" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Yangilandi" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Holat" @@ -439,7 +439,7 @@ msgstr "Holat" msgid "Action" msgstr "Amal" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Ko‘rsatish" @@ -455,11 +455,11 @@ msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" msgid "Drop" msgstr "O‘chirish" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "faol" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "faol emas" @@ -467,11 +467,11 @@ msgstr "faol emas" msgid "Versions" msgstr "Vеrsiyalar" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Tuzilma rasmi" @@ -635,11 +635,11 @@ msgstr "" #: import.php:107 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to " -#| "%sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -689,7 +689,7 @@ msgstr "" "Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" @@ -717,7 +717,7 @@ msgstr "" "Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha " "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -925,9 +925,8 @@ msgstr "" #: index.php:468 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -"cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi " -"$cfg[\"blowfish_secret\"] direktivasi qiymatini o‘rnatib parol belgilash " -"kerak." +"cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi $cfg" +"[\"blowfish_secret\"] direktivasi qiymatini o‘rnatib parol belgilash kerak." #: index.php:479 #, fuzzy @@ -963,8 +962,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s" -"\")dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin." +"MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s\")" +"dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin." #: index.php:546 #, php-format @@ -975,7 +974,7 @@ msgstr "" "Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar " "yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." @@ -986,7 +985,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" @@ -1090,8 +1089,8 @@ msgstr "Privilegiyalar qayta yuklanmoqda" msgid "Removing Selected Users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Yopish" @@ -1234,13 +1233,13 @@ msgstr "Bayt" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1282,7 +1281,7 @@ msgid "Traffic" msgstr "Trafik" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1308,13 +1307,14 @@ msgstr "To‘rga bog‘lab qo‘yish" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Yo‘q" @@ -1414,7 +1414,7 @@ msgstr "Boshqa sozlanishlar" msgid "Current settings" msgstr "tanlovlar" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1510,7 +1510,7 @@ msgstr "So‘rov tahlili" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Vaqt" @@ -1623,7 +1623,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1693,7 +1693,7 @@ msgid "Cancel" msgstr "Bekor qilish" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy #| msgid "Load" msgid "Loading" @@ -1883,7 +1883,7 @@ msgstr "SQL so‘rovlari qutisi" msgid "Show query box" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1897,7 +1897,7 @@ msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1993,7 +1993,7 @@ msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "" @@ -2011,7 +2011,7 @@ msgstr "Qatorlar bo‘luvchisi" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "" @@ -2572,31 +2572,31 @@ msgstr "soatiga" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Shrift o‘lchami" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "O‘sish tartibida" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2759,14 +2759,14 @@ msgstr "Ko‘rib chiqish" msgid "Delete the matches for the %s table?" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "O‘chirish" @@ -2878,17 +2878,11 @@ msgstr "gorizontal (aylantirilgan sarlavhalar)" msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Belgilangan so‘rovni bajarish" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2915,99 +2909,99 @@ msgstr "Indeks bo‘yicha sortirovka qilish" msgid "Options" msgstr "Parametrlar" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "Aloqador kalit" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Aloqador maydon qiymati" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "Ikkilik ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "O‘girish" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "Tugatish" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Taxminiy bo‘lishi mumkin. [doc@faq3-11]\"FAQ 3.11\"[/doc]ga qarang" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "jami" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -3016,8 +3010,8 @@ msgstr "So‘rov %01.4f sekund vaqt oldi" msgid "With selected:" msgstr "Belgilanganlarni:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -3028,49 +3022,49 @@ msgstr "Belgilanganlarni:" msgid "Check All" msgstr "Barchasini belgilash" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Chop etish versiyasi" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -3119,8 +3113,8 @@ msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Yuklangan fayl joyini o‘zgartirishda xatolik, [doc@faq1-11]\"FAQ 1.11\"[/" -"doc]ga qarang" +"Yuklangan fayl joyini o‘zgartirishda xatolik, [doc@faq1-11]\"FAQ 1.11\"[/doc]" +"ga qarang" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -3153,38 +3147,38 @@ msgstr "Indeks belgilanmagan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indekslar" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Elementlar soni" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Taqqoslash" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Izoh" @@ -3224,7 +3218,7 @@ msgstr "Namoyish" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Tuzilishi" @@ -3376,19 +3370,19 @@ msgstr[1] "%1$d ta qatorlar qo‘yildi." msgid "Error while creating PDF:" msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "Jadvallarni sanash" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3646,7 +3640,7 @@ msgid "Maximum rows to plot" msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" @@ -3751,14 +3745,14 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4004,7 +3998,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -4069,7 +4063,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Jadval turlari" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profillashtirish" @@ -4557,8 +4551,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/" -"Bzip2]bzip2[/a] yordamida siqishni yoqish" +"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/Bzip2]" +"bzip2[/a] yordamida siqishni yoqish" #: libraries/config/messages.inc.php:27 msgid "Bzip2" @@ -4588,8 +4582,8 @@ msgstr "CHAR maydonlarini tahrirlash" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -5175,9 +5169,8 @@ msgstr "Sahifa raqami: " #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" #: libraries/config/messages.inc.php:192 @@ -5385,8 +5378,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/" -"Gzip]gzip[/a] yordamida siqishni yoqish" +"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/Gzip]" +"gzip[/a] yordamida siqishni yoqish" #: libraries/config/messages.inc.php:235 msgid "GZip" @@ -5677,8 +5670,8 @@ msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -"Bog‘langan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada " -"([kbd]yangi[/kbd]) ochish" +"Bog‘langan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada ([kbd]" +"yangi[/kbd]) ochish" #: libraries/config/messages.inc.php:302 msgid "Logo link target" @@ -6061,11 +6054,11 @@ msgstr "Xatcho‘plar jadvali" #: libraries/config/messages.inc.php:378 #, fuzzy #| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" +#| "Leave blank for no column comments/mime types, suggested: [kbd]" +#| "pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma__column_info[/kbd]" msgstr "" "Ustun izohlari/\"mime\"-turlari haqidagi ma`lumotlarni ishlatmaslik uchun " "bo‘sh qoldiring, asli: [kbd]pma_column_info[/kbd]" @@ -6100,8 +6093,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Cheklangan huquqlarga ega bo‘lgan maxsus \"MySQL\" foydalanuvchisi tuzilgan, " -"batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/" -"a]da mavjud" +"batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" +"da mavjud" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -6141,8 +6134,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Dizayner ishlatmaslik uchun bo‘sh qoldiring, asl qiymati: " -"[kbd]pma_designer_coords[/kbd]" +"Dizayner ishlatmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" +"pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -6153,9 +6146,9 @@ msgid "" "More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Ko‘proq ma`lumot uchun [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL " -"Bugs\"[/a]larga qarang" +"Ko‘proq ma`lumot uchun [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" +"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" +"larga qarang" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -6183,8 +6176,8 @@ msgstr "Bazalarni yashirish" #: libraries/config/messages.inc.php:399 #, fuzzy #| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" +#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" +#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -6262,8 +6255,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -6276,9 +6269,9 @@ msgid "" "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " -"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/" -"a]ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " -"[kbd]\"phpmyadmin\"[/kbd]" +"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" +"\"phpmyadmin\"[/kbd]" #: libraries/config/messages.inc.php:415 #, fuzzy @@ -6318,8 +6311,8 @@ msgstr "Foydalanuvchi nomini chaqirib olish" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Aloqa bog‘lanishlari[/a]ni " "ishlatmaslik uchun, bo‘sh qoldiring, asl qiymati: [kbd]\"pma_relation\"[/kbd]" @@ -6338,11 +6331,11 @@ msgstr "SHOW DATABASES buyrug‘i" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" msgstr "" -"Namuna uchun [a@http://wiki.phpmyadmin.net/pma/" -"auth_types#signon]autentifikatsiya usullari[/a]ga qarang" +"Namuna uchun [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" +"autentifikatsiya usullari[/a]ga qarang" #: libraries/config/messages.inc.php:425 msgid "Signon session name" @@ -6379,8 +6372,8 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6466,8 +6459,8 @@ msgstr "Tavsif" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" @@ -6495,8 +6488,8 @@ msgstr "Avtomatik tiklash rejimi" #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" @@ -6709,8 +6702,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Foydalanuvchi" @@ -6871,8 +6864,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/" -"ZIP_(file_format)]ZIP[/a] qisishni yoqish" +"Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/ZIP_" +"(file_format)]ZIP[/a] qisishni yoqish" #: libraries/config/messages.inc.php:530 msgid "ZIP" @@ -7173,7 +7166,7 @@ msgstr "Ma`lumotlar bazalari" msgid "Table(s):" msgstr "Jadvallar" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7231,12 +7224,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -7830,8 +7823,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:133 @@ -7849,7 +7842,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." @@ -7984,11 +7977,11 @@ msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -8045,7 +8038,7 @@ msgstr "Indеks(lar)ni saqlash" msgid "Add prefix" msgstr "Indеks(lar)ni saqlash" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8387,17 +8380,17 @@ msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Faqat tuzilishi" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Faqat ma`lumotlar" @@ -8570,8 +8563,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -8860,7 +8853,7 @@ msgstr "Maydon nomlarini birinchi qatorga joylashtirish" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8868,7 +8861,7 @@ msgstr "Xost" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8886,7 +8879,7 @@ msgstr "PHP versiyasm" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -10161,7 +10154,7 @@ msgstr "Atributlar" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Qo‘shimcha" @@ -10336,7 +10329,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Vеrsiya" @@ -10828,8 +10821,8 @@ msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " @@ -10844,60 +10837,286 @@ msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundiga" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ishlatilmoqda" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Statiskani ko‘rsatish" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Jadvallarni tanlang" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "So‘rov turi" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Indеks(lar)ni saqlash" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Jadvallarni tanlang" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Jadval nomi noto‘g‘ri" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Yangi foydalanuvchi qo‘shish" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL so‘rovlari" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Boshlash" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Belgilashni yoqish" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Yangilash" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR maydonidagi ustunlar soni" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Xatoliklarni boshqarish:" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Asl qiymatlarni tiklash" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL so‘rovi natijasi" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Tuzilgan" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Ma`lumotlar fayllarining oshish hajmi" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Boshlang‘ich" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Jami" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vaqt" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Yopish" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vaqt" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Xatcho‘p belgisi" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Barcha foydalanuvchilarga ruxsat berish" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10918,10 +11137,6 @@ msgstr "Tozalash" msgid "Bookmark this SQL query:" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Barcha foydalanuvchilarga ruxsat berish" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Shu nomli xatcho‘pni almashtirish" @@ -11068,7 +11283,7 @@ msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" msgid "Sort" msgstr "Sortirovka qilish" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -11240,7 +11455,7 @@ msgstr "Effektivlik" msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -11415,7 +11630,7 @@ msgstr "Ushbu ZIP arxivda xatolik:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" @@ -11474,7 +11689,7 @@ msgid "Toggle relation lines" msgstr "" "Aloqani tanlash uchun rasmda ko‘rsatilganikabi ulanish nuqtasiga bosing:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-sxemaga/sxemadan jadval koordinatalarini import/eksport qilish" @@ -11550,51 +11765,51 @@ msgstr "Tuzish" msgid "Active options" msgstr "Jadval parametrlari" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Sahifa tuzildi" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sahifa tuzib bo‘lmadi" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "sahifalar soni " -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fayllarni import qilish" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Masshtab" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yangi indeks tuzish" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Foydalanuvchi nomi" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Masshtab" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "tavsiya etilgan" @@ -11624,7 +11839,7 @@ msgstr "Ichki aloqa o‘rnatildi" msgid "Relation deleted" msgstr "Aloqa o‘chirildi" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Koordinatalarni saqlashda xatolik." @@ -12094,217 +12309,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Indеks(lar)ni saqlash" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Jadvallarni tanlang" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Jadval nomi noto‘g‘ri" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Yangi foydalanuvchi qo‘shish" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL so‘rovlari" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Statiskani ko‘rsatish" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Jadvallarni tanlang" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "So‘rov turi" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "sekundiga" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ishlatilmoqda" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Boshlash" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Belgilashni yoqish" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Yangilash" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR maydonidagi ustunlar soni" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Xatoliklarni boshqarish:" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Asl qiymatlarni tiklash" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12867,8 +12871,8 @@ msgstr "Ochiq fayllar soni." #: server_status_variables.php:642 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb " -"\"fopen()\" funksiyasi yordamida ochilgan faylga aytiladi." +"Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" +"()\" funksiyasi yordamida ochilgan faylga aytiladi." #: server_status_variables.php:645 msgid "The number of tables that are open." @@ -13109,18 +13113,17 @@ msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" #, fuzzy #| msgid "" #| "ase create web server writable folder [em]config[/em] in phpMyAdmin " -#| "level directory as described in [a@../Documentation." -#| "html#setup_script]umentation[/a]. Otherwise you will be only able to " -#| "download or display " +#| "level directory as described in [a@../Documentation.html#setup_script]" +#| "umentation[/a]. Otherwise you will be only able to download or display " msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" "[a@../Documentation.html#setup_script]Dokumentatsiya[/a]da ko‘rsatilganidek, " -"phpMyAdmin joylashgan katalogda ver-server yozishi mumkin bo‘lgan " -"[em]config[/em] nomli katalog oching. Aks holda, Siz uni faqat yuklab " -"olishingiz yoki ko‘rishingiz mumkin bo‘ladi." +"phpMyAdmin joylashgan katalogda ver-server yozishi mumkin bo‘lgan [em]config" +"[/em] nomli katalog oching. Aks holda, Siz uni faqat yuklab olishingiz yoki " +"ko‘rishingiz mumkin bo‘ladi." #: setup/frames/index.inc.php:60 msgid "" @@ -13281,10 +13284,10 @@ msgstr "Yangiroq versiya hali mavjud emas" #| msgid "" #| "s [a@?page=form&formset=features#tab_Security]option[/a] should be " #| "abled as it allows attackers to bruteforce login to any MySQL server. you " -#| "feel this is necessary, use [a@?page=form&" -#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "tection may not be reliable if your IP belongs to an ISP where usands of " -#| "users, including you, are connected to." +#| "feel this is necessary, use [a@?page=form&mset=features#tab_Security]" +#| "trusted proxies list[/a]. However, IP-based tection may not be reliable " +#| "if your IP belongs to an ISP where usands of users, including you, are " +#| "connected to." msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " @@ -13410,15 +13413,14 @@ msgstr "" #| " set the [kbd]config[/kbd] authentication type and included username " #| "password for auto-login, which is not a desirable option for live ts. " #| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your " -#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&" -#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or " -#| "[kbd]httpbd]." +#| "phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=d#tab_Server]" +#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "Siz [kbd]config[/kbd] autentifikatsiya usulini tanlab, o‘z loginva " "parolingizni konfiguratsion faylga yozib qo‘ydingiz va u Sizga avtomatik " @@ -13426,9 +13428,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki " -"[kbd]http[/kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" +"kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:318 #, fuzzy, php-format @@ -13488,49 +13490,39 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak" msgid "Wrong data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "\"%s\" xatcho‘pi tuzildi" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Xatcho‘p belgisi" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13787,34 +13779,34 @@ msgid "No column selected." msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" jadvali uchun kuzatuv hisoboti" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s vеrsiya tuzildi, \"%s.%s\" ni kuzatishsh faollashtirilgan." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL so‘rovi bajarildi." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13822,125 +13814,125 @@ msgstr "" "Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning " "uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s vеrsiya rasmi (SQL kodi)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Kuzatish opеratorlari" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Sanani" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Ma’lumotlar ta’rifi opеratorini" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Ma’lumotlarni boshqarish opеratorini" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dampi (faylni yuklab olish)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL damp" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL bajaruvi" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "\"%s\" dеb eksport qilish" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Vеrsiyalarni ko‘rsatish" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Hozir faolsizlantirish" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faollashtirish" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Hozir faollashtirish" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Vеrsiyasini tuzish" @@ -14325,8 +14317,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14461,8 +14453,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -15189,6 +15181,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Belgilangan so‘rovni bajarish" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" @@ -15471,9 +15468,9 @@ msgstr "Maksimal ulanishlar soni " #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" #~ "Agar ushbu tanlovni [kbd]\"nested\"[/kbd] deb belgilasangiz, faqat jadval " #~ "nomining taxallusi konfiguratsion fayldagi $cfg[\"LeftFrameTableSeparator" diff --git a/po/zh_CN.po b/po/zh_CN.po index 7e8a6a07db..45fc5e69ab 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-05-14 06:43+0200\n" "Last-Translator: Randall Fan \n" "Language-Team: Simplified Chinese \n" -"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "搜索:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "搜索:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "执行" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "键名" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "说明" @@ -104,7 +104,7 @@ msgid "" "for more information." msgstr "该系统不支持 %s 文件,请访问 www.phpmyadmin.net 查询更多信息。" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "创建数据库 %1$s 成功。" @@ -132,7 +132,7 @@ msgstr "表注释:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "字段" @@ -155,7 +155,7 @@ msgstr "字段" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "类型" @@ -172,7 +172,7 @@ msgstr "类型" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "空" @@ -187,7 +187,7 @@ msgstr "空" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "默认" @@ -229,9 +229,9 @@ msgstr "注释" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "否" @@ -256,9 +256,9 @@ msgstr "否" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "是" @@ -308,7 +308,7 @@ msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此 #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "表" @@ -383,7 +383,7 @@ msgstr "已追踪的表" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "数据库" @@ -391,17 +391,17 @@ msgstr "数据库" msgid "Last version" msgstr "最新版本" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "创建" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "更新" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "状态" @@ -414,7 +414,7 @@ msgstr "状态" msgid "Action" msgstr "操作" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "显示" @@ -430,11 +430,11 @@ msgstr "删除追踪数据" msgid "Drop" msgstr "删除" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "启用" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "禁用" @@ -442,11 +442,11 @@ msgstr "禁用" msgid "Versions" msgstr "版本" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "追踪报告" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "结构快照" @@ -597,8 +597,8 @@ msgstr "从 \"函数\" 列中选择 \"GeomFromText\" 并粘贴内容到下列 \" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" #: import.php:250 import.php:516 @@ -641,7 +641,7 @@ msgstr "没有字符集转换库,无法转换文件字符集" msgid "Could not load import plugins, please check your installation!" msgstr "无法加载导入插件,请检查你的安装!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" @@ -665,7 +665,7 @@ msgstr "" "在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin " "将无法完成导入操作。" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -863,7 +863,7 @@ msgid "" "issues." msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" @@ -872,7 +872,7 @@ msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要执行\"%s\"吗?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" @@ -956,8 +956,8 @@ msgstr "重新载入权限" msgid "Removing Selected Users" msgstr "正在删除选中的用户" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "关闭" @@ -1082,13 +1082,13 @@ msgstr "字节" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1127,7 +1127,7 @@ msgid "Traffic" msgstr "流量" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "设置" @@ -1147,13 +1147,14 @@ msgstr "添加图表" msgid "Please add at least one variable to the series" msgstr "请至少添加一个数据" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "无" @@ -1248,7 +1249,7 @@ msgstr "修改设置" msgid "Current settings" msgstr "当前设置" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "图表标题" @@ -1330,7 +1331,7 @@ msgstr "分析输出" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "时间" @@ -1423,7 +1424,7 @@ msgstr "导入配置失败。正在重设为默认设置…" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" @@ -1480,7 +1481,7 @@ msgid "Cancel" msgstr "取消" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "正在加载" @@ -1628,7 +1629,7 @@ msgstr "隐藏查询框" msgid "Show query box" msgstr "显示查询框" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1641,7 +1642,7 @@ msgstr "编辑" msgid "No rows selected" msgstr "没有选中任何行" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1723,7 +1724,7 @@ msgstr "数据点内容" msgid "Ignore" msgstr "忽略" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "复制" @@ -1739,7 +1740,7 @@ msgstr "线" msgid "Polygon" msgstr "多边形" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "几何体" @@ -2211,31 +2212,31 @@ msgstr "每小时" msgid "per day" msgstr "每天" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "已存在的配置文件(%s)是不可读的。" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "配置文件权限错误,无法写入!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "字号" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "递增" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2375,14 +2376,14 @@ msgstr "浏览" msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "删除" @@ -2471,16 +2472,11 @@ msgstr "水平 (旋转表头)" msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "每 %s 行重复表头" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "主键排序" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2507,89 +2503,89 @@ msgstr "主键排序" msgid "Options" msgstr "选项" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "部分内容" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "完整内容" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "关联键" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "关联显示字段" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "显示二进制内容" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "以十六进制显示二进制内容" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "隐藏浏览器转换" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "文本表达式 (WKT)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "二进制表达式 (WKB)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "杀死" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "可能接近。参见 [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "查询中" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "该视图最少包含的行数,参见%s文档%s。" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "显示行" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "总计" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2598,8 +2594,8 @@ msgstr "查询花费 %01.4f 秒" msgid "With selected:" msgstr "选中项:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2610,45 +2606,45 @@ msgstr "选中项:" msgid "Check All" msgstr "全选" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "导出" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "新建视图" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "打印预览" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "显示图表" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "可视化 GIS 数据" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "找不到链接" @@ -2723,38 +2719,38 @@ msgstr "没有已定义的索引!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "紧凑" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "基数" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "整理" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "注释" @@ -2794,7 +2790,7 @@ msgstr "视图" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "结构" @@ -2936,15 +2932,15 @@ msgstr[0] "插入了 %1$d 行。" msgid "Error while creating PDF:" msgstr "创建 PDF 时发生错误:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "无法保存最近使用的表" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "最近使用的表" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "没有最近使用的表" @@ -3181,7 +3177,7 @@ msgid "Maximum rows to plot" msgstr "显示的最多行数" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "浏览不相关的值" @@ -3287,21 +3283,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "小型浮点数,允许值可以是在-3.402823466E+38和-1.175494351E-38之间,或者是 0," "或者在 1.175494351E-38 到 3.402823466E+38之间" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"双精度浮点数,允许的值为-1.7976931348623157E+308 到 " -"-2.2250738585072014E-308, 0, 以及 2.2250738585072014E-308 到 " -"1.7976931348623157E+308" +"双精度浮点数,允许的值为-1.7976931348623157E+308 到 -2.2250738585072014E-" +"308, 0, 以及 2.2250738585072014E-308 到 1.7976931348623157E+308" #: libraries/Types.class.php:312 msgid "" @@ -3547,7 +3542,7 @@ msgstr "在已定义值列表中取值的枚举类型" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL 查询:" @@ -3606,7 +3601,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "快速编辑" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "性能分析" @@ -4073,8 +4068,8 @@ msgstr "编辑 CHAR 类型字段" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" "使用包含语法凸显与行号的用户友好的编辑器编辑SQL语句 ([a@http://codemirror." "net/]CodeMirror[/a])" @@ -4611,9 +4606,8 @@ msgstr "页面标题" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "设置浏览器标题栏所显示的文字。参见[doc@cfg_TitleTable]文档[/doc]中关于可以取" "得特殊值的魔术字符串。" @@ -5375,8 +5369,8 @@ msgstr "书签表" #: libraries/config/messages.inc.php:378 msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"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:379 @@ -5584,8 +5578,8 @@ msgstr "最近使用的表" #: libraries/config/messages.inc.php:420 msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功" "能请留空,推荐: [kbd]pma__relation[/kbd]" @@ -5604,8 +5598,8 @@ msgstr "显示数据库(SHOW DATABASES)命令" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]中的例子" @@ -5708,8 +5702,8 @@ msgstr "要追踪的命令" #: libraries/config/messages.inc.php:445 msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "不使用 SQL 查询追踪功能请留空,推荐: [kbd]pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 @@ -5728,8 +5722,8 @@ msgstr "自动创建版本" #: libraries/config/messages.inc.php:449 msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:450 @@ -5919,8 +5913,8 @@ msgid "" msgstr "" "如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "用户名" @@ -6333,7 +6327,7 @@ msgstr "数据库:" msgid "Table(s):" msgstr "数据表:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "记录:" @@ -6382,8 +6376,8 @@ msgstr ",@TABLE@ 将变成数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -6551,8 +6545,8 @@ msgid "" "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" msgstr "" -"在导入时脚本若检测到可能需要花费很长时间(接近PHP超时的限定)则允许中断。" -"(尽管这会中断事务,但在导入大文件时是个很好的方法。)" +"在导入时脚本若检测到可能需要花费很长时间(接近PHP超时的限定)则允许中断。" +"(尽管这会中断事务,但在导入大文件时是个很好的方法。)" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -6899,8 +6893,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:133 @@ -6916,7 +6910,7 @@ msgid "No data found for GIS visualization." msgstr "未找到用于 GIS 可视化的数据。" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" @@ -7034,11 +7028,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7089,7 +7083,7 @@ msgstr "添加表前缀" msgid "Add prefix" msgstr "添加前缀" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "您真的要执行下面的查询吗?" @@ -7417,17 +7411,17 @@ msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "仅结构" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "结构和数据" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "仅数据" @@ -7590,8 +7584,8 @@ msgstr "欢迎使用 %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" @@ -7846,7 +7840,7 @@ msgstr "首行保存字段名" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -7854,7 +7848,7 @@ msgstr "主机" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -7872,7 +7866,7 @@ msgstr "PHP 版本" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8973,7 +8967,7 @@ msgstr "属性" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "额外" @@ -9136,7 +9130,7 @@ msgid "Library" msgstr "库" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "版本" @@ -9585,12 +9579,12 @@ msgstr "用户概况" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" -"限%s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" +"s。" #: libraries/server_privileges.lib.php:3036 msgid "The selected user was not found in the privilege table." @@ -9600,63 +9594,273 @@ msgstr "在权限表内找不到选中的用户。" msgid "You have added a new user." msgstr "您已添加了一个新用户。" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 秒" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 分" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "日志统计" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "选择时间范围:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "去除 INSERT 语句中的变量值以获得更好的分组" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "请选择生成统计的来源日志。" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "结果将根据查询语句分组。" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "查询分析器" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "监控说明" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin 监控可以帮助你优化服务期配置并追踪特定查询。要实现追踪查询功能,你" +"需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" +"请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" +"的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "使用监控:" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" +"您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修" +"改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" +"示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "请注意:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"启用 general_log 可能会增加 5-15% 的服务器负载。从日志中统计数据同样也是高负" +"载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" +"表。" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "添加图表" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "预置图表" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "状态变量" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "选择数据:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "常用监控" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "或输入变量名:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "独立显示" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "应用除数" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "在值后附加单位" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "添加该数据" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "清除所有数据" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "图表中的数据:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "启动监控" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "说明/设置" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "完成排列/编辑图表" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "启用高亮" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "刷新频率" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "每行图表个数" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "图表排列" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" +"图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "恢复默认" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL 查询结果" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "生成者" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "数据文件增长大小" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "其它" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "起始时间" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "总时间:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "时间" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "关闭" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "时间" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "将此 SQL 查询加为书签" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "标签" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "让所有用户均可访问此书签" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9677,10 +9881,6 @@ msgstr "清除" msgid "Bookmark this SQL query:" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "让所有用户均可访问此书签" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "替换现有的同名书签" @@ -9815,7 +10015,7 @@ msgstr "仅选择多余" msgid "Sort" msgstr "排序" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "无" @@ -9971,7 +10171,7 @@ msgstr "有效" msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "查询错误" @@ -10117,7 +10317,7 @@ msgstr "ZIP 包中有错误:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "致命错误:导航只能通过AJAX访问" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "已保存修改" @@ -10173,7 +10373,7 @@ msgstr "反向收缩/展开" msgid "Toggle relation lines" msgstr "显示/隐藏关系线" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "为 PDF 大纲导入/导出坐标" @@ -10233,43 +10433,43 @@ msgstr "聚合" msgid "Active options" msgstr "当前选项" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "已创建页面" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "页面创建失败" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "页面" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "从所选页导入" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "导出至所选页" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "导出至新页" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "新页面名: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "按比例导出/导入" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "推荐" @@ -10297,7 +10497,7 @@ msgstr "已添加内联关系" msgid "Relation deleted" msgstr "已删除关系" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "保存设计器坐标时出错。" @@ -10720,201 +10920,6 @@ msgstr "" "最好的系统调整方法是一次只修改一个设置,观察并测试您的数据库,如果没有显著的" "效果就撤销改变。" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "监控说明" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin 监控可以帮助你优化服务期配置并追踪特定查询。要实现追踪查询功能,你" -"需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" -"请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" -"的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "使用监控:" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" -"您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修" -"改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" -"示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "请注意:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"启用 general_log 可能会增加 5-15% 的服务器负载。从日志中统计数据同样也是高负" -"载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" -"表。" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "添加图表" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "预置图表" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "状态变量" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "选择数据:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "常用监控" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "或输入变量名:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "独立显示" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "应用除数" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "在值后附加单位" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "添加该数据" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "清除所有数据" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "图表中的数据:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "日志统计" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "选择时间范围:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "去除 INSERT 语句中的变量值以获得更好的分组" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "请选择生成统计的来源日志。" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "结果将根据查询语句分组。" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "查询分析器" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d 秒" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d 分" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "启动监控" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "说明/设置" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "完成排列/编辑图表" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "启用高亮" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "刷新频率" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "每行图表个数" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "图表排列" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" -"图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。" - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "恢复默认" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11874,8 +11879,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码," "但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 " @@ -11920,24 +11925,24 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" msgid "Wrong data" msgstr "无效数据" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "未创建书签" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -11947,21 +11952,11 @@ msgid "" "and Delete features are not available." msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "将此 SQL 查询加为书签" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "标签" - #: tbl_chart.php:38 msgid "No data to display" msgstr "没有可显示数据" @@ -12173,144 +12168,144 @@ msgstr "选择要显示的字段" msgid "No column selected." msgstr "没有选中任何列。" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追踪报告" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已创建版本 %1$s,%2$s 的追踪已启用。" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已停用。" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已启用。" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 语句已执行。" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "你可以通过创建一个临时数据库来执行这个转储。请确保你有足够的权限。" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "如果你不需要,请注释以下两行。" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 语句已导出。请复制保存或运行它。" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 代码)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "追踪数据定义删除成功" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "追踪数据操作删除成功" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "追踪语句" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "从报告中删除追踪数据" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "无数据" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "日期" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "数据定义语句" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "数据操作语句" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 转储 (文件下载)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 转储" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "该选项将导致当前表的结构和数据被替换。" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "执行 SQL 语句" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "导出为 %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "禁用 %s 的追踪" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "立即禁用" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "启用 %s 的追踪" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "立即启用" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "为 %2$s 创建版本 %1$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "追踪下列数据定义语句:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "追踪下列数据操作语句:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "创建版本" @@ -12674,8 +12669,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "当前空闲查询缓存内存为总查询缓存大小的 %s%%。此值应高于 80%%" #: libraries/advisory_rules.txt:181 @@ -12806,8 +12801,8 @@ msgstr "根据系统内存,考虑增加 {sort_buffer_siz}e 和/或 {read_rnd_b #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "%s%% 的排序引发临时表创建,该值应低于 10%%。" #: libraries/advisory_rules.txt:218 @@ -13477,6 +13472,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#~ msgid "Headers every %s rows" +#~ msgstr "每 %s 行重复表头" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -13756,13 +13754,13 @@ msgstr "concurrent_insert 被设为 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" -#~ "当设为 [kbd]nested[/kbd] 时,数据表的别名仅根据 " -#~ "$cfg['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名," -#~ "数据表自己的名字并不改变" +#~ "当设为 [kbd]nested[/kbd] 时,数据表的别名仅根据 $cfg" +#~ "['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,数据" +#~ "表自己的名字并不改变" #~ msgid "Display table comment instead of its name" #~ msgstr "显示表备注而不显示表名" @@ -14334,8 +14332,8 @@ msgstr "concurrent_insert 被设为 0" #~ "Note that not every result table can be put to the chart. See
FAQ 6.29" #~ msgstr "" -#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "添加新用户" diff --git a/po/zh_TW.po b/po/zh_TW.po index f8109e53a5..f2a1e50af4 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-19 11:39-0400\n" "PO-Revision-Date: 2013-06-19 16:34+0200\n" "Last-Translator: Tony Chen \n" -"Language-Team: Traditional Chinese " -"\n" -"Language: zh_TW\n" +"Language-Team: Traditional Chinese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.6-dev\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "搜尋:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1650 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,21 +73,21 @@ msgstr "搜尋:" #: libraries/server_privileges.lib.php:3091 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "執行" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "鍵名" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "說明" @@ -104,7 +104,7 @@ msgid "" "for more information." msgstr "找不到檔案 %s,詳情請參考 www.phpmyadmin.net。" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "建立資料庫 %1$s 成功。" @@ -132,7 +132,7 @@ msgstr "表註釋:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "欄位" @@ -155,7 +155,7 @@ msgstr "欄位" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "類型" @@ -172,7 +172,7 @@ msgstr "類型" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "空" @@ -187,7 +187,7 @@ msgstr "空" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "預設" @@ -229,9 +229,9 @@ msgstr "註釋" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "否" @@ -256,9 +256,9 @@ msgstr "否" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "是" @@ -308,7 +308,7 @@ msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原 #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "表" @@ -383,7 +383,7 @@ msgstr "已追蹤的表" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "資料庫" @@ -391,17 +391,17 @@ msgstr "資料庫" msgid "Last version" msgstr "最新版本" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "建立" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "更新" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "狀態" @@ -414,7 +414,7 @@ msgstr "狀態" msgid "Action" msgstr "動作" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "顯示" @@ -430,11 +430,11 @@ msgstr "刪除追蹤資料" msgid "Drop" msgstr "刪除" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "啓用" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "停用" @@ -442,11 +442,11 @@ msgstr "停用" msgid "Versions" msgstr "版本" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "追蹤報告" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "結構快照" @@ -590,8 +590,8 @@ msgstr "" #: import.php:107 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to " -"%sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 以了解如何解決此限制." #: import.php:250 import.php:516 @@ -635,7 +635,7 @@ msgstr "沒有字元集轉換函式庫,無法轉換檔案字元集" msgid "Could not load import plugins, please check your installation!" msgstr "無法載入匯入插件,請檢查您的安裝!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" @@ -660,7 +660,7 @@ msgstr "" "在最後一次執行匯入時沒有資料被解析,建議您增加 PHP 運行時間限制,否則 " "phpMyAdmin 將無法完成匯入操作。" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4520 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -859,7 +859,7 @@ msgid "" "issues." msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況。" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "刪除資料庫的指令「DROP DATABASE」已經被停用。" @@ -868,7 +868,7 @@ msgstr "刪除資料庫的指令「DROP DATABASE」已經被停用。" msgid "Do you really want to execute \"%s\"?" msgstr "您確定要執行「%s」?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "您將要刪除一個完整的資料庫!" @@ -952,8 +952,8 @@ msgstr "重新載入權限" msgid "Removing Selected Users" msgstr "正在刪除選中的使用者" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "關閉" @@ -1078,13 +1078,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1123,7 +1123,7 @@ msgid "Traffic" msgstr "流量" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "設定" @@ -1143,13 +1143,14 @@ msgstr "新增一張圖表至格線" msgid "Please add at least one variable to the series" msgstr "請至少增加一個變數" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1281 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "無" @@ -1244,7 +1245,7 @@ msgstr "管理我的設定" msgid "Current settings" msgstr "目前的設定" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "圖表的標題" @@ -1328,7 +1329,7 @@ msgstr "輸出說明" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "時間" @@ -1423,7 +1424,7 @@ msgstr "使用匯入的設定檔讀取圖表時發生錯誤,改用預設的設 #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "匯入" @@ -1480,7 +1481,7 @@ msgid "Cancel" msgstr "取消" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "載入中" @@ -1628,7 +1629,7 @@ msgstr "隱藏查詢框" msgid "Show query box" msgstr "顯示查詢框" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3307 #: libraries/Index.class.php:591 libraries/Util.class.php:699 #: libraries/Util.class.php:1246 libraries/Util.class.php:3453 #: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 @@ -1641,7 +1642,7 @@ msgstr "編輯" msgid "No rows selected" msgstr "沒有選中任何行" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5040 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1723,7 +1724,7 @@ msgstr "資料指標內容" msgid "Ignore" msgstr "忽略" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3310 msgid "Copy" msgstr "複製" @@ -1739,7 +1740,7 @@ msgstr "一維折線" msgid "Polygon" msgstr "多邊形" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1634 msgid "Geometry" msgstr "幾何體" @@ -2211,35 +2212,35 @@ msgstr "每小時" msgid "per day" msgstr "每天" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" "設定檔 %s 是唯獨狀態,請開啟該檔案的讀取權限。(如果您沒有相關權限,請聯絡系" "統管理員。)" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "phpMyAdmin 發現您的設定檔允許任何人寫入,為了安全性的考量,請重新設定該設定檔" "的權限。" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "字體大小" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1265 +#: libraries/DisplayResults.class.php:2000 +#: libraries/DisplayResults.class.php:2008 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "遞增" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1277 +#: libraries/DisplayResults.class.php:1995 +#: libraries/DisplayResults.class.php:2013 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2377,14 +2378,14 @@ msgstr "瀏覽" msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3379 +#: libraries/DisplayResults.class.php:5016 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "刪除" @@ -2472,16 +2473,11 @@ msgstr "水平 (旋轉標題)" msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "每 %s 列顯示欄位標題" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1223 msgid "Sort by key" msgstr "主鍵排序" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1571 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2508,89 +2504,89 @@ msgstr "主鍵排序" msgid "Options" msgstr "選項" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1577 +#: libraries/DisplayResults.class.php:1683 msgid "Partial texts" msgstr "部分內容" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1578 +#: libraries/DisplayResults.class.php:1687 msgid "Full texts" msgstr "完整內容" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1592 msgid "Relational key" msgstr "關聯鍵" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1593 msgid "Relational display column" msgstr "關聯顯示字段" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1605 msgid "Show binary contents" msgstr "顯示二進制內容" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1610 msgid "Show BLOB contents" msgstr "顯示 BLOB 內容" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1615 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "以十六進制顯示二進制內容" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1626 msgid "Hide browser transformation" msgstr "隱藏瀏覽器轉換" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1635 msgid "Well Known Text" msgstr "易懂的文字" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1636 msgid "Well Known Binary" msgstr "易懂的二進位檔" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3352 +#: libraries/DisplayResults.class.php:3368 msgid "The row has been deleted" msgstr "已刪除該行" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3406 +#: libraries/DisplayResults.class.php:5016 server_status.php:524 msgid "Kill" msgstr "中止" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4466 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "可能接近。參見 [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4862 msgid "in query" msgstr "查詢中" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4899 libraries/structure.lib.php:653 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4912 msgid "Showing rows" msgstr "顯示行" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4928 msgid "total" msgstr "總計" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4939 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "查詢花費 %01.4f 秒" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5030 +#: libraries/DisplayResults.class.php:5036 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2599,8 +2595,8 @@ msgstr "查詢花費 %01.4f 秒" msgid "With selected:" msgstr "選中項:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5035 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2611,45 +2607,45 @@ msgstr "選中項:" msgid "Check All" msgstr "全選" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5053 +#: libraries/DisplayResults.class.php:5323 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 #: libraries/Util.class.php:3455 libraries/Util.class.php:3456 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "匯出" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5155 view_create.php:152 msgid "Create view" msgstr "新建視圖" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5211 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5247 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "列印預覽" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5265 msgid "Print view (with full texts)" msgstr "列印預覽 (全文顯示)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5336 tbl_chart.php:151 msgid "Display chart" msgstr "顯示圖表" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5361 msgid "Visualize GIS data" msgstr "虛擬的 GIS 資料" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5575 msgid "Link not found" msgstr "找不到連結" @@ -2724,38 +2720,38 @@ msgstr "沒有已定義的索引!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "緊湊" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "基數" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "排序規則" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "註解" @@ -2795,7 +2791,7 @@ msgstr "view" #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "結構" @@ -2937,15 +2933,15 @@ msgstr[0] "插入了 %1$d 行。" msgid "Error while creating PDF:" msgstr "在產生 PDF 檔案時發生錯誤:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "無法儲存最新資料表" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "最新資料表" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "沒有最新資料表" @@ -3184,7 +3180,7 @@ msgid "Maximum rows to plot" msgstr "最多可顯示行數" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "瀏覽不相關的值" @@ -3291,20 +3287,20 @@ msgstr "" #: libraries/Types.class.php:308 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "一個小的浮點數,範圍為-3.402823466E+38至-1.175494351E-38、0及1.175494351E-38" "至3.402823466E+38" #: libraries/Types.class.php:310 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"一個雙倍精準的符點數,範圍為 -1.7976931348623157E+308 至 " -"-2.2250738585072014E-308、0 及 2.2250738585072014E-308 至 1.7976931348623157E" +"一個雙倍精準的符點數,範圍為 -1.7976931348623157E+308 至 -" +"2.2250738585072014E-308、0 及 2.2250738585072014E-308 至 1.7976931348623157E" "+308" #: libraries/Types.class.php:312 @@ -3564,7 +3560,7 @@ msgstr "" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL 查詢:" @@ -3623,7 +3619,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "行間" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "概要" @@ -4083,8 +4079,8 @@ msgstr "編輯 CHAR 類型欄位" #: libraries/config/messages.inc.php:30 msgid "" -"Use user-friendly editor for editing SQL queries ([a@http://codemirror." -"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" +"CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" #: libraries/config/messages.inc.php:31 @@ -4609,9 +4605,8 @@ msgstr "頁面標題" #: libraries/config/messages.inc.php:191 msgid "" -"Specify browser's title bar text. Refer to " -"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used " -"to get special values." +"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" +"[/doc] for magic strings that can be used to get special values." msgstr "" "設定瀏覽器標題欄所顯示的文字。參見[doc@cfg_TitleTable]檔案[/doc]中關於可以取" "得特殊值的魔術字元串。" @@ -5193,9 +5188,6 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "丟失 phpMyAdmin 進階功能資料表" #: libraries/config/messages.inc.php:334 -#| msgid "" -#| "Disable the default warning that is displayed if mcrypt is missing for " -#| "cookie authentication" msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected" @@ -5206,10 +5198,6 @@ msgid "Server/library difference warning" msgstr "" #: libraries/config/messages.inc.php:336 -#| 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" msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words" @@ -5370,27 +5358,21 @@ msgid "Authentication type" msgstr "認證方式" #: libraries/config/messages.inc.php:376 -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" -#| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"在不支援[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤[/a]功能時請留空,建議用:[kbd]pma__bo" -"okmark[/kbd]" +"在不支援[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤[/a]功能時請留空,建議" +"用:[kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" msgstr "書籤表" #: libraries/config/messages.inc.php:378 -#| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" msgid "" -"Leave blank for no column comments/mime types, suggested: " -"[kbd]pma__column_info[/kbd]" +"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:379 @@ -5457,9 +5439,6 @@ msgid "Control port" msgstr "管理伺服器" #: libraries/config/messages.inc.php:391 -#| msgid "" -#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" -#| "kbd]" msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" @@ -5498,9 +5477,6 @@ msgid "Hide databases" msgstr "隱藏資料庫" #: libraries/config/messages.inc.php:399 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" @@ -5553,8 +5529,8 @@ msgid "" "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " "[kbd]'my_db'[/kbd]." msgstr "" -"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元本身,請在前面加上反斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 " -"[kbd]'my_db'[/kbd]。" +"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元本身,請在前面加上反" +"斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。" #: libraries/config/messages.inc.php:409 msgid "Show only listed databases" @@ -5569,8 +5545,6 @@ msgid "Password for config auth" msgstr "config 認證方式的密碼" #: libraries/config/messages.inc.php:412 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "不使用 PDF 大綱功能請留空,建議值:[kbd]pma__pdf_pages[/kbd]" @@ -5612,15 +5586,12 @@ msgid "Recently used table" msgstr "最近使用的資料表" #: libraries/config/messages.inc.php:420 -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" -"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -"links[/a] support, suggested: [kbd]pma__relation[/kbd]" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 " -"[/a]功能請留空,建議值:[kbd]pma__relation[/kbd]" +"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,建" +"議值:[kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5636,8 +5607,8 @@ msgstr "顯示資料庫(SHOW DATABASES)命令" #: libraries/config/messages.inc.php:424 msgid "" -"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] for an example" +"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]中的例子" @@ -5666,9 +5637,6 @@ msgid "Use SSL" msgstr "使用 SSL" #: libraries/config/messages.inc.php:431 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" -#| "kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" @@ -5679,9 +5647,6 @@ msgid "PDF schema: table coordinates" msgstr "PDF 大綱: 資料表同時" #: libraries/config/messages.inc.php:433 -#| msgid "" -#| "Table to describe the display columns, leave blank for no support; " -#| "suggested: [kbd]pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" @@ -5694,8 +5659,8 @@ msgstr "顯示字段表" #: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" -#| "ve blank for no user preferences storage in database, suggested: " -#| "[kbd]_config[/kbd]" +#| "ve blank for no user preferences storage in database, suggested: [kbd]" +#| "_config[/kbd]" msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" @@ -5745,12 +5710,9 @@ msgid "Statements to track" msgstr "要追蹤的命令" #: libraries/config/messages.inc.php:445 -#| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" msgid "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma__tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" +"[/kbd]" msgstr "不使用 SQL 查詢追蹤功能請留空,建議值:[kbd]pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 @@ -5768,12 +5730,9 @@ msgid "Automatically create versions" msgstr "自動建立版本" #: libraries/config/messages.inc.php:449 -#| msgid "" -#| "ve blank for no user preferences storage in database, suggested: " -#| "[kbd]_config[/kbd]" msgid "" -"Leave blank for no user preferences storage in database, suggested: " -"[kbd]pma__userconfig[/kbd]" +"Leave blank for no user preferences storage in database, suggested: [kbd]" +"pma__userconfig[/kbd]" msgstr "不在資料庫中儲存使用者偏好請留空,建議值:[kbd]pma__config[/kbd]" #: libraries/config/messages.inc.php:450 @@ -5824,7 +5783,6 @@ msgid "Show or hide a column displaying the Creation timestamp for all tables" msgstr "" #: libraries/config/messages.inc.php:461 -#| msgid "Show more actions" msgid "Show Creation timestamp" msgstr "顯示建立時間戳記" @@ -5843,7 +5801,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:465 -#| msgid "Show master status" msgid "Show Last check timestamp" msgstr "顯示最後檢查時間戳記" @@ -5964,8 +5921,8 @@ msgid "" "kbd])" msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "使用者名" @@ -6087,7 +6044,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:523 -#| msgid "Version check" msgid "Version check proxy url" msgstr "檢查代理 url 版本" @@ -6099,7 +6055,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:525 -#| msgid "Version check" msgid "Version check proxy username" msgstr "檢查代理使用者名稱版本" @@ -6108,7 +6063,6 @@ msgid "The password for authenticating with the proxy" msgstr "" #: libraries/config/messages.inc.php:527 -#| msgid "Version check" msgid "Version check proxy password" msgstr "檢查代理密碼版本" @@ -6234,7 +6188,6 @@ msgid "Empty phpMyAdmin control user password while using pmadb" msgstr "使用 PMA 資料時控制使用者的密碼不能爲空" #: libraries/config/validate.lib.php:435 -#| msgid "Incorrect value" msgid "Incorrect value:" msgstr "輸入的值不正確:" @@ -6281,12 +6234,10 @@ msgstr "密碼:" #: libraries/display_change_password.lib.php:67 #: libraries/replication_gui.lib.php:379 #: libraries/server_privileges.lib.php:1226 -#| msgid "Re-type" msgid "Re-type:" msgstr "重新輸入:" #: libraries/display_change_password.lib.php:74 -#| msgid "Password Hashing" msgid "Password Hashing:" msgstr "密碼加密方式:" @@ -6303,7 +6254,6 @@ msgid "Create" msgstr "建立" #: libraries/display_create_database.lib.php:43 -#| msgid "Create database" msgid "Create database:" msgstr "建立新資料庫:" @@ -6371,7 +6321,7 @@ msgstr "資料庫:" msgid "Table(s):" msgstr "資料表:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "記錄:" @@ -6420,8 +6370,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下" "列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s。" @@ -6514,7 +6464,6 @@ msgid "%s of %s" msgstr "" #: libraries/display_import.lib.php:86 -#| msgid "Format of imported file" msgid "Uploading your import file…" msgstr "正在上傳您的匯入檔案…" @@ -6585,15 +6534,13 @@ msgid "" msgstr "上一個匯入操作超時,隨後重新送出將會從 %d 處開始。" #: libraries/display_import.lib.php:289 -#| msgid "" -#| "Allow the interruption of an import in case the script detects it is " -#| "close to the PHP timeout limit. (This might be good way to import " -#| "large files, however it can break transactions.)" msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" -msgstr "在 PHP 執行匯入時,若偵測到逾時則允許中斷。(在匯入大檔案時這是個很好的方法,不過這樣會中斷交易。)" +msgstr "" +"在 PHP 執行匯入時,若偵測到逾時則允許中斷。(在匯入大檔案時這是個很好的方" +"法,不過這樣會中斷交易。)" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -6609,7 +6556,6 @@ msgid "Add index" msgstr "新增索引" #: libraries/display_indexes.lib.php:52 -#| msgid "Edit mode" msgid "Edit index" msgstr "編輯索引" @@ -6623,7 +6569,6 @@ msgid "" msgstr "(“PRIMARY”必須而且只能作爲主鍵的名稱!)" #: libraries/display_indexes.lib.php:85 -#| msgid "Comment" msgid "Comment:" msgstr "註解:" @@ -6942,8 +6887,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s。" #: libraries/engines/pbxt.lib.php:133 @@ -6959,7 +6904,7 @@ msgid "No data found for GIS visualization." msgstr "沒有找到 GIS 虛擬所需資料。" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)。" @@ -6978,7 +6923,6 @@ msgid "" msgstr "點選相應的“選項”連結修改它的設定" #: libraries/import.lib.php:1193 -#| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "點選「結構」連結以編輯" @@ -7031,7 +6975,6 @@ msgid "Binary - do not edit" msgstr "二進制 - 無法編輯" #: libraries/insert_edit.lib.php:1187 libraries/sql_query_form.lib.php:482 -#| msgid "web server upload directory" msgid "web server upload directory:" msgstr "網站伺服器上傳資料夾:" @@ -7077,11 +7020,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7098,12 +7041,10 @@ msgid "Convert to Kana" msgstr "轉換爲假名" #: libraries/mult_submits.inc.php:288 -#| msgid "Replace table prefix" msgid "Replace table prefix:" msgstr "取代資料表名稱的前綴文字:" #: libraries/mult_submits.inc.php:290 -#| msgid "Copy table with prefix" msgid "Copy table with prefix:" msgstr "複製資料表並在名稱加上前綴文字:" @@ -7121,7 +7062,6 @@ msgid "Submit" msgstr "送出" #: libraries/mult_submits.inc.php:317 -#| msgid "Add table prefix" msgid "Add table prefix:" msgstr "新增資料表的前綴文字:" @@ -7129,8 +7069,7 @@ msgstr "新增資料表的前綴文字:" msgid "Add prefix" msgstr "新增前綴文字" -#: libraries/mult_submits.inc.php:339 sql.php:416 -#| msgid "Do you really want to " +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "您真的要執行下列的查詢?" @@ -7352,7 +7291,6 @@ msgid_plural "%s other results found" msgstr[0] "" #: libraries/navigation/NavigationTree.class.php:1042 -#| msgid "filter tables by name" msgid "filter databases by name" msgstr "依資料庫名稱篩選" @@ -7362,7 +7300,6 @@ msgid "Clear Fast Filter" msgstr "" #: libraries/navigation/NavigationTree.class.php:1075 -#| msgid "filter tables by name" msgid "filter items by name" msgstr "依項目名稱篩選" @@ -7441,7 +7378,6 @@ msgid "New" msgstr "" #: libraries/operations.lib.php:75 -#| msgid "Rename database to" msgid "Rename database to:" msgstr "將資料庫改名為:" @@ -7459,22 +7395,21 @@ msgid "Drop the database (DROP)" msgstr "刪除資料庫 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "僅結構" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "結構和資料" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "僅資料" #: libraries/operations.lib.php:175 -#| msgid "Copy database to" msgid "Copy database to:" msgstr "複製資料庫到:" @@ -7631,8 +7566,8 @@ msgstr "歡迎使用 %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:102 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "您可能還沒有建立設定檔案。您可以使用 %1$s 設定指令 %2$s 來建立。" #: libraries/plugins/auth/AuthenticationConfig.class.php:122 @@ -7674,7 +7609,6 @@ msgid "Username:" msgstr "使用者名稱:" #: libraries/plugins/auth/AuthenticationCookie.class.php:225 -#| msgid "Server Choice" msgid "Server Choice:" msgstr "選擇伺服器:" @@ -7797,7 +7731,6 @@ msgstr "Event" #: libraries/rte/rte_events.lib.php:513 #: libraries/rte/rte_routines.lib.php:1031 #: libraries/rte/rte_triggers.lib.php:401 -#| msgid "Description" msgid "Definition" msgstr "定義" @@ -7842,13 +7775,11 @@ msgstr "物件建立選項" #: libraries/plugins/export/ExportLatex.class.php:121 #: libraries/plugins/export/ExportLatex.class.php:166 -#| msgid "Table caption" msgid "Table caption:" msgstr "表的標題:" #: libraries/plugins/export/ExportLatex.class.php:126 #: libraries/plugins/export/ExportLatex.class.php:171 -#| msgid "Table caption (continued)" msgid "Table caption (continued):" msgstr "表的標題(續上):" @@ -7877,7 +7808,6 @@ msgid "Display MIME types" msgstr "顯示 MIME 類型" #: libraries/plugins/export/ExportLatex.class.php:162 -#| msgid "Put columns names in the first row" msgid "Put columns names in the first row:" msgstr "首行儲存欄位名稱:" @@ -7885,22 +7815,19 @@ msgstr "首行儲存欄位名稱:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 -#| msgid "Host" +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "主機:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 -#| msgid "Generation Time" +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "產生時間:" #: libraries/plugins/export/ExportLatex.class.php:226 #: libraries/plugins/export/ExportSql.class.php:614 #: libraries/plugins/export/ExportXml.class.php:199 -#| msgid "PHP Version" msgid "PHP Version:" msgstr "PHP 版本:" @@ -7908,19 +7835,16 @@ msgstr "PHP 版本:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 -#| msgid "Database" +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "資料庫:" #: libraries/plugins/export/ExportLatex.class.php:303 #: libraries/plugins/export/ExportSql.class.php:1546 -#| msgid "Data" msgid "Data:" msgstr "資料:" #: libraries/plugins/export/ExportLatex.class.php:487 -#| msgid "Structure" msgid "Structure:" msgstr "結構:" @@ -7931,7 +7855,6 @@ msgid "Export table names" msgstr "要匯出資料表的名稱" #: libraries/plugins/export/ExportMediawiki.class.php:90 -#| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "匯出資料表的標題" @@ -7984,7 +7907,6 @@ msgstr "" "表)" #: libraries/plugins/export/ExportSql.class.php:295 -#| msgid "Object creation options" msgid "Data creation options" msgstr "資料建立選項" @@ -8092,7 +8014,6 @@ msgid "Export contents" msgstr "匯出內容" #: libraries/plugins/export/PMA_ExportPdf.class.php:116 -#| msgid "Table" msgid "Table:" msgstr "資料表:" @@ -8155,7 +8076,6 @@ msgstr "MediaWiki 表" #: libraries/plugins/import/ImportMediawiki.class.php:303 #, php-format -#| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "mediawiki 輸入在此行格式錯誤:
%s." @@ -8176,7 +8096,6 @@ msgid "" msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試。" #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "無法解析 OpenOffice 表格!" @@ -8360,7 +8279,6 @@ msgid "not OK" msgstr "錯誤" #: libraries/relation.lib.php:92 -#| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "確定" @@ -8467,7 +8385,6 @@ msgstr "" #: libraries/replication_gui.lib.php:60 libraries/replication_gui.lib.php:273 #: libraries/server_privileges.lib.php:1024 -#| msgid "User name" msgid "User name:" msgstr "帳號:" @@ -8479,7 +8396,6 @@ msgid "User name" msgstr "帳號" #: libraries/replication_gui.lib.php:72 -#| msgid "Port" msgid "Port:" msgstr "連接埠:" @@ -8528,7 +8444,6 @@ msgstr "任意使用者" #: libraries/replication_gui.lib.php:372 #: libraries/server_privileges.lib.php:1175 #: libraries/server_privileges.lib.php:2292 -#| msgid "Use text field" msgid "Use text field:" msgstr "使用文字欄位:" @@ -8565,7 +8480,6 @@ msgid "Re-type" msgstr "重新輸入" #: libraries/replication_gui.lib.php:386 -#| msgid "Generate Password" msgid "Generate Password:" msgstr "產生密碼:" @@ -8613,13 +8527,11 @@ msgstr "編輯 Event" #: libraries/rte/rte_routines.lib.php:1481 #: libraries/rte/rte_routines.lib.php:1521 #: libraries/rte/rte_triggers.lib.php:230 -#| msgid "Error in Processing Request" msgid "Error in processing request:" msgstr "處理要求時發生錯誤:" #: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:931 #: libraries/rte/rte_triggers.lib.php:347 -#| msgid "Details…" msgid "Details" msgstr "詳細" @@ -8633,7 +8545,6 @@ msgstr "Event 類型" #: libraries/rte/rte_events.lib.php:463 libraries/rte/rte_routines.lib.php:954 #, php-format -#| msgid "Change" msgid "Change to %s" msgstr "修改為 %s" @@ -8646,13 +8557,11 @@ msgid "Execute every" msgstr "" #: libraries/rte/rte_events.lib.php:496 -#| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "起始" #: libraries/rte/rte_events.lib.php:505 -#| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "結束" @@ -8708,7 +8617,6 @@ msgid "Event scheduler status" msgstr "Event 排程狀態" #: libraries/rte/rte_list.lib.php:55 -#| msgid "Return type" msgid "Returns" msgstr "返回" @@ -8723,7 +8631,6 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:281 #: libraries/rte/rte_routines.lib.php:1118 #, php-format -#| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "無效的函式類型: \"%s\"" @@ -8733,23 +8640,19 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:332 #, php-format -#| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "函式的 %1$s 已被修改。" #: libraries/rte/rte_routines.lib.php:353 #, php-format -#| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "函式 %1$s 已建立成功。" #: libraries/rte/rte_routines.lib.php:434 -#| msgid "Edit mode" msgid "Edit routine" msgstr "編輯函式" #: libraries/rte/rte_routines.lib.php:934 -#| msgid "Routines" msgid "Routine name" msgstr "函式名稱" @@ -8773,7 +8676,6 @@ msgid "Add parameter" msgstr "" #: libraries/rte/rte_routines.lib.php:988 -#| msgid "Remove database" msgid "Remove last parameter" msgstr "移除最後的參數" @@ -8782,12 +8684,10 @@ msgid "Return type" msgstr "返回類型" #: libraries/rte/rte_routines.lib.php:1000 -#| msgid "Length/Values" msgid "Return length/values" msgstr "返回長度/值" #: libraries/rte/rte_routines.lib.php:1006 -#| msgid "Table options" msgid "Return options" msgstr "返回選項" @@ -8796,7 +8696,6 @@ msgid "Is deterministic" msgstr "" #: libraries/rte/rte_routines.lib.php:1047 -#| msgid "Security" msgid "Security type" msgstr "安全類型" @@ -8834,7 +8733,6 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1370 #, php-format -#| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "執行函式 %s 的結果" @@ -8851,7 +8749,6 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1572 #: libraries/rte/rte_routines.lib.php:1575 -#| msgid "Routines" msgid "Routine parameters" msgstr "函式的參數" @@ -8861,28 +8758,23 @@ msgstr "" #: libraries/rte/rte_triggers.lib.php:116 #, php-format -#| msgid "Column %s has been dropped" msgid "Trigger %1$s has been modified." msgstr "觸發器 %1$s 已被修改。" #: libraries/rte/rte_triggers.lib.php:136 #, php-format -#| msgid "Table %1$s has been created." msgid "Trigger %1$s has been created." msgstr "建立觸發器 %1$s 成功。" #: libraries/rte/rte_triggers.lib.php:204 -#| msgid "Add a new server" msgid "Edit trigger" msgstr "編輯觸發器" #: libraries/rte/rte_triggers.lib.php:350 -#| msgid "Triggers" msgid "Trigger name" msgstr "觸發器名稱" #: libraries/rte/rte_triggers.lib.php:373 -#| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "時間" @@ -8900,7 +8792,6 @@ msgid "You must provide a valid event for the trigger" msgstr "您必須為 Event 指定一個正確觸發條件" #: libraries/rte/rte_triggers.lib.php:474 -#| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "您必須提供一個合法的資料表名稱" @@ -8909,66 +8800,54 @@ msgid "You must provide a trigger definition." msgstr "" #: libraries/rte/rte_words.lib.php:27 -#| msgid "Add index" msgid "Add routine" msgstr "新增函式" #: libraries/rte/rte_words.lib.php:29 #, php-format -#| msgid "Export defaults" msgid "Export of routine %s" msgstr "匯出函式 %s" #: libraries/rte/rte_words.lib.php:30 -#| msgid "Routines" msgid "routine" msgstr "函式" #: libraries/rte/rte_words.lib.php:31 -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a routine" msgstr "您無建立函式的權限" #: libraries/rte/rte_words.lib.php:32 #, php-format -#| msgid "No tables found in database" msgid "No routine with name %1$s found in database %2$s" msgstr "在資料庫 %2$s 中無此函式名稱 %1$s" #: libraries/rte/rte_words.lib.php:33 -#| msgid "There are no files to upload" msgid "There are no routines to display." msgstr "沒有函式可供顯示。" #: libraries/rte/rte_words.lib.php:39 -#| msgid "Add a new server" msgid "Add trigger" msgstr "新增觸發器" #: libraries/rte/rte_words.lib.php:41 #, php-format -#| msgid "Export contents" msgid "Export of trigger %s" msgstr "匯出觸發器 %s" #: libraries/rte/rte_words.lib.php:42 -#| msgid "Triggers" msgid "trigger" msgstr "觸發器" #: libraries/rte/rte_words.lib.php:43 -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a trigger" msgstr "您無建立觸發器的權限" #: libraries/rte/rte_words.lib.php:44 #, php-format -#| msgid "No tables found in database" msgid "No trigger with name %1$s found in database %2$s" msgstr "資料庫 %2$s 中無此觸發器 %1$s" #: libraries/rte/rte_words.lib.php:45 -#| msgid "There are no files to upload" msgid "There are no triggers to display." msgstr "沒有觸發器可供顯示。" @@ -8995,7 +8874,6 @@ msgid "No event with name %1$s found in database %2$s" msgstr "在資料庫「%2$s」中找不到名為「%1$s」的 Event" #: libraries/rte/rte_words.lib.php:57 -#| msgid "There are no files to upload" msgid "There are no events to display." msgstr "沒有事件可供顯示。" @@ -9048,7 +8926,7 @@ msgstr "屬性" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "額外" @@ -9153,7 +9031,6 @@ msgid "Unknown language: %1$s." msgstr "未知的語言:%1$s." #: libraries/select_server.lib.php:39 libraries/select_server.lib.php:44 -#| msgid "Current Server" msgid "Current Server:" msgstr "目前伺服器:" @@ -9210,7 +9087,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "版本" @@ -9223,7 +9100,6 @@ msgid "License" msgstr "" #: libraries/server_plugins.lib.php:184 -#| msgid "Disabled" msgid "disabled" msgstr "已關閉" @@ -9524,7 +9400,6 @@ msgid "Grant" msgstr "授權" #: libraries/server_privileges.lib.php:1610 -#| msgid "View %s has been dropped" msgid "User has been added." msgstr "已新增使用者。" @@ -9595,7 +9470,6 @@ msgid "Column-specific privileges" msgstr "按欄位指定權限" #: libraries/server_privileges.lib.php:2288 -#| msgid "Add privileges on the following database" msgid "Add privileges on the following database:" msgstr "在下列資料庫新增權限:" @@ -9604,7 +9478,6 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" #: libraries/server_privileges.lib.php:2327 -#| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "在下列資料表新增權限:" @@ -9641,17 +9514,14 @@ msgstr "您已更新了 %s 的權限。" #: libraries/server_privileges.lib.php:2805 #, php-format -#| msgid "Privileges" msgid "Privileges for %s" msgstr "權限 %s" #: libraries/server_privileges.lib.php:2861 -#| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "編輯權限:" #: libraries/server_privileges.lib.php:2915 -#| msgid "User overview" msgid "Users overview" msgstr "查看使用者" @@ -9660,8 +9530,8 @@ msgstr "查看使用者" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" @@ -9675,55 +9545,245 @@ msgstr "在權限表內找不到選中的使用者。" msgid "You have added a new user." msgstr "您已新增了一個新使用者。" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 秒" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 分" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "紀錄統計" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "選擇時間範圍:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "查詢分析" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "監督指令" + +#: libraries/server_status_monitor.lib.php:137 +msgid "" +"The phpMyAdmin Monitor can assist you in optimizing the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +msgid "" +"Your browser will refresh all displayed charts in a regular interval. You " +"may add charts and change the refresh rate under 'Settings', or remove any " +"chart using the cog icon on each respective chart." +msgstr "" + +#: libraries/server_status_monitor.lib.php:173 +msgid "" +"To display queries from the logs, select the relevant time span on any chart " +"by holding down the left mouse button and panning over the chart. Once " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "新增圖表" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "預設圖表" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "狀態變數值" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "選擇序列:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "或變數型態名稱:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "新增這個序列" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "圖表中的序列:" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Textarea rows" +msgid "Start Monitor" +msgstr "開始觀察(monitor)" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "啓用圖表拖放" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "更新頻率" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "圖表欄位" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "圖表排列" + +#: libraries/server_status_monitor.lib.php:349 +msgid "" +"The arrangement of the charts is stored to the browsers local storage. You " +"may want to export it if you have a complicated set up." +msgstr "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "還原預設值" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL 查詢結果" -#: libraries/sql.lib.php:464 -#| msgid "Generated by" +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "產生者:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "簡介明細" -#: libraries/sql.lib.php:498 -#| msgid "Other" +#: libraries/sql.lib.php:450 msgid "Order" msgstr "順序" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 -#| msgid "Startup" +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "狀態" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 -#| msgid "Total time:" +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "總計耗時" -#: libraries/sql.lib.php:553 -#| msgid "Time" +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% 時間" -#: libraries/sql.lib.php:555 -#| msgid "Close" +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "次呼叫" -#: libraries/sql.lib.php:557 -#| msgid "Time" +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø 時間" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "將此 SQL 查詢加爲書籤" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "標籤:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "讓所有使用者均可訪問此書籤" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9739,14 +9799,9 @@ msgid "Clear" msgstr "清除" #: libraries/sql_query_form.lib.php:318 -#| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" msgstr "將此 SQL 查詢加爲書籤:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "讓所有使用者均可訪問此書籤" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "替換現有的同名書籤" @@ -9881,7 +9936,7 @@ msgstr "僅選擇多餘" msgid "Sort" msgstr "排序" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "無" @@ -9916,7 +9971,6 @@ msgid "Fulltext" msgstr "全文搜尋" #: libraries/structure.lib.php:1423 libraries/structure.lib.php:1519 -#| msgid "Remove column(s)" msgid "Move columns" msgstr "移動欄位" @@ -9925,7 +9979,6 @@ msgid "Move the columns by dragging them up and down." msgstr "" #: libraries/structure.lib.php:1460 -#| msgid "Print view" msgid "Edit view" msgstr "編輯視表" @@ -9966,7 +10019,6 @@ msgid "After %s" msgstr "於 %s 之後" #: libraries/structure.lib.php:1670 -#| msgid "Row Statistics" msgid "Row statistics" msgstr "行統計" @@ -10006,7 +10058,6 @@ msgid "A primary key has been added on %s" msgstr "已將 %s 設爲主鍵" #: libraries/structure.lib.php:2003 libraries/structure.lib.php:2074 -#| msgid "Browse distinct values" msgid "Distinct values" msgstr "不同的值" @@ -10019,7 +10070,6 @@ msgid "Add unique index" msgstr "新增唯一鍵" #: libraries/structure.lib.php:2024 libraries/structure.lib.php:2027 -#| msgid "Add index" msgid "Add SPATIAL index" msgstr "新增 SPATIAL 索引" @@ -10040,13 +10090,11 @@ msgstr "有效" msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 -#| msgid "Query type" +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "查詢錯誤" #: libraries/structure.lib.php:2509 -#| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "欄位已搬移成功。" @@ -10072,7 +10120,6 @@ msgid "" msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a" #: libraries/tbl_columns_definition_form.inc.php:149 -#| msgid "Remove column(s)" msgid "Move column" msgstr "搬移欄位" @@ -10120,7 +10167,6 @@ msgstr "" #: libraries/tbl_columns_definition_form.inc.php:644 #, php-format -#| msgid "After %s" msgid "after %s" msgstr "於 %s 之後" @@ -10129,23 +10175,19 @@ msgid "Table name" msgstr "資料資料表名稱" #: libraries/tbl_columns_definition_form.inc.php:838 -#| msgid "Storage Engine" msgid "Storage Engine:" msgstr "儲存引擎:" #: libraries/tbl_columns_definition_form.inc.php:842 -#| msgid "Collation" msgid "Collation:" msgstr "排序規則:" #: libraries/tbl_columns_definition_form.inc.php:876 -#| msgid "PARTITION definition" msgid "PARTITION definition:" msgstr "分區定義:" #: libraries/tbl_common.inc.php:54 #, php-format -#| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." msgstr "%s 的追蹤已啓用。" @@ -10187,7 +10229,7 @@ msgstr "ZIP 包中有錯誤:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "已儲存修改" @@ -10240,11 +10282,10 @@ msgid "Toggle small/big" msgstr "反向收縮/展開" #: pmd_general.php:141 -#| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "請點選關聯行" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "爲 PDF 大綱匯入/匯出座標" @@ -10265,7 +10306,6 @@ msgid "Hide/Show Tables with no relation" msgstr "隱藏/顯示沒有關聯的表" #: pmd_general.php:218 -#| msgid "Number of tables" msgid "Number of tables:" msgstr "資料表數量:" @@ -10303,41 +10343,39 @@ msgstr "聚合" msgid "Active options" msgstr "目前選項" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "已建立頁面" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "頁面建立失敗" -#: pmd_pdf.php:113 -#| msgid "Page" +#: pmd_pdf.php:112 msgid "Page:" msgstr "頁面:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "從所選頁匯入" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "匯出至所選頁" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "匯出至新頁" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "新頁面名: " -#: pmd_pdf.php:141 -#| msgid "Export/Import to scale" +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "按比例匯出/匯入:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "推薦" @@ -10354,7 +10392,6 @@ msgid "FOREIGN KEY relation added" msgstr "已新增外部鍵關聯" #: pmd_relation_new.php:82 -#| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "錯誤:關聯未啟用!" @@ -10366,7 +10403,7 @@ msgstr "已新增行內部關聯" msgid "Relation deleted" msgstr "已刪除關聯" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "儲存設計器座標時出錯。" @@ -10447,7 +10484,6 @@ msgid "All" msgstr "全部" #: querywindow.php:154 -#| msgid "SQL history" msgid "SQL history:" msgstr "SQL 歷史:" @@ -10462,7 +10498,6 @@ msgstr "檔案不存在" #: server_databases.php:117 #, php-format -#| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" @@ -10698,7 +10733,6 @@ msgstr "" #: server_status.php:106 #, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "此 MySQL 伺服器已經運行了 %1$s,啓動時間爲 %2$s。" @@ -10787,222 +10821,20 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "監督指令" - -#: server_status_monitor.php:455 -msgid "" -"The phpMyAdmin Monitor can assist you in optimizing the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -msgid "" -"Your browser will refresh all displayed charts in a regular interval. You " -"may add charts and change the refresh rate under 'Settings', or remove any " -"chart using the cog icon on each respective chart." -msgstr "" - -#: server_status_monitor.php:491 -msgid "" -"To display queries from the logs, select the relevant time span on any chart " -"by holding down the left mouse button and panning over the chart. Once " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#| msgid "Add index" -msgid "Add chart" -msgstr "新增圖表" - -#: server_status_monitor.php:519 -#| msgid "Remove database" -msgid "Preset chart" -msgstr "預設圖表" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "狀態變數值" - -#: server_status_monitor.php:526 -#| msgid "Select Tables" -msgid "Select series:" -msgstr "選擇序列:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "或變數型態名稱:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#| msgid "Add a new server" -msgid "Add this series" -msgstr "新增這個序列" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "圖表中的序列:" - -#: server_status_monitor.php:584 -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "紀錄統計" - -#: server_status_monitor.php:585 -#| msgid "Select page" -msgid "Selected time range:" -msgstr "選擇時間範圍:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#| msgid "Query type" -msgid "Query analyzer" -msgstr "查詢分析" - -#: server_status_monitor.php:654 -#, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d 秒" - -#: server_status_monitor.php:657 -#, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d 分" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start Monitor" -msgstr "開始觀察(monitor)" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "啓用圖表拖放" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "更新頻率" - -#: server_status_monitor.php:717 -#| msgid "Textarea columns" -msgid "Chart columns" -msgstr "圖表欄位" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "圖表排列" - -#: server_status_monitor.php:736 -msgid "" -"The arrangement of the charts is stored to the browsers local storage. You " -"may want to export it if you have a complicated set up." -msgstr "" - -#: server_status_monitor.php:750 -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "還原預設值" - #: server_status_queries.php:67 #, php-format -#| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "自啟動後的問題:%s" #: server_status_queries.php:79 -#| msgid "per hour" msgid "per hour:" msgstr "每小時:" #: server_status_queries.php:82 -#| msgid "per minute" msgid "per minute:" msgstr "每分鐘:" #: server_status_queries.php:86 -#| msgid "per second" msgid "per second:" msgstr "每秒:" @@ -11021,12 +10853,10 @@ msgid "Filters" msgstr "過濾" #: server_status_variables.php:82 server_variables.php:158 -#| msgid "Do not change the password" msgid "Containing the word:" msgstr "包含這個字:" #: server_status_variables.php:89 -#| msgid "Show open tables" msgid "Show only alert values" msgstr "只顯示警示值" @@ -11035,12 +10865,10 @@ msgid "Filter by category…" msgstr "" #: server_status_variables.php:114 -#| msgid "Show open tables" msgid "Show unformatted values" msgstr "顯示未格式化的值" #: server_status_variables.php:133 -#| msgid "Related Links" msgid "Related links:" msgstr "相關連結:" @@ -11051,7 +10879,6 @@ msgid "" msgstr "" #: server_status_variables.php:334 -#| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器。" @@ -11425,7 +11252,6 @@ msgid "" msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量。" #: server_status_variables.php:596 -#| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "已使用鍵值緩存的百分比(計算值)" @@ -11663,7 +11489,6 @@ msgstr "" "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" #: server_status_variables.php:758 -#| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "執行序緩存命中率(計算值)" @@ -11727,7 +11552,6 @@ msgid "Insecure connection" msgstr "非安全連線" #: setup/frames/index.inc.php:98 -#| msgid "Modifications have been saved" msgid "Configuration saved." msgstr "設定已儲存。" @@ -11945,8 +11769,8 @@ msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or " -"[kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." msgstr "" "您設定了 [kbd]config[/kbd] 認證方式,且爲了能夠自動登錄而儲存了帳號和密碼,但" "在常用主機上不建議這樣設定。如果有人知道 phpMyAdmin 的網址,他們就能夠進入 " @@ -11968,7 +11792,6 @@ msgid "" msgstr "此系統目前不支援 %sZip 解壓縮%s所必須的 (%s) 函數。" #: setup/lib/index.lib.php:348 -#| msgid "You should use SSL connections if your web server supports it." msgid "You should use SSL connections if your database server supports it." msgstr "如果資料庫支援,您應該使用 SSL 連線。" @@ -11989,54 +11812,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元。" #: setup/validate.php:22 -#| msgid "No databases" msgid "Wrong data" msgstr "錯誤的資料" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢。" -#: sql.php:298 -#| msgid "Bookmark %s created" +#: sql.php:266 msgid "Bookmark not created" msgstr "書籤並未建立" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "顯示爲 PHP 程式碼" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "已校驗的 SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format -#| msgid "" -#| "This table does not contain a unique column. Features related to the grid " -#| "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "資料表 %s 不含唯一的資料欄位,將無法執行修改、複製、刪除等相關的功能。" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "將此 SQL 查詢加爲書籤" - -#: sql.php:1191 -#| msgid "Label" -msgid "Label:" -msgstr "標籤:" - #: tbl_chart.php:38 -#| msgid "No databases" msgid "No data to display" msgstr "無資料可顯示" @@ -12049,19 +11857,16 @@ msgid "No numeric columns present in the table to plot." msgstr "" #: tbl_chart.php:154 -#| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "長條圖" #: tbl_chart.php:156 -#| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "欄位" #: tbl_chart.php:159 -#| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "折線圖" @@ -12079,13 +11884,11 @@ msgid "Area" msgstr "" #: tbl_chart.php:166 -#| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "餅圖" #: tbl_chart.php:170 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "時間軸" @@ -12095,7 +11898,6 @@ msgid "Stacked" msgstr "堆疊" #: tbl_chart.php:180 -#| msgid "Report title:" msgid "Chart title" msgstr "圖表標題" @@ -12104,22 +11906,18 @@ msgid "X-Axis:" msgstr "" #: tbl_chart.php:200 -#| msgid "SQL queries" msgid "Series:" msgstr "序列:" #: tbl_chart.php:229 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "水平軸標籤:" #: tbl_chart.php:232 -#| msgid "Value" msgid "X Values" msgstr "水平軸值" #: tbl_chart.php:234 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "垂直軸標籤:" @@ -12153,12 +11951,10 @@ msgid "Display GIS Visualization" msgstr "顯示可視化地理訊息" #: tbl_gis_visualization.php:119 -#| msgid "Textarea columns" msgid "Label column" msgstr "標籤欄位" #: tbl_gis_visualization.php:121 -#| msgid "- none -" msgid "-- None --" msgstr "-- 無 --" @@ -12173,7 +11969,6 @@ msgid "Redraw" msgstr "重繪" #: tbl_gis_visualization.php:178 -#| msgid "Table name" msgid "File name" msgstr "檔案名稱" @@ -12212,17 +12007,14 @@ msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" #: tbl_printview.php:65 -#| msgid "Show tables" msgid "Showing tables:" msgstr "顯示資料表:" #: tbl_printview.php:296 -#| msgid "Space usage" msgid "Space usage:" msgstr "已用空間:" #: tbl_printview.php:345 -#| msgid "Row Statistics" msgid "Row Statistics:" msgstr "行統計:" @@ -12246,176 +12038,168 @@ msgid "Foreign key constraint" msgstr "外部鍵約束" #: tbl_relation.php:500 -#| msgid "Constraints for table" msgid "Constraint name" msgstr "約束名稱" #: tbl_relation.php:531 -#| msgid "No index defined!" msgid "No index defined! Create one below" msgstr "未定義索引! 請建立一個" #: tbl_relation.php:546 -#| msgid "Choose column to display" msgid "Choose column to display:" msgstr "選擇要顯示的欄位:" #: tbl_structure.php:125 -#| msgid "No rows selected" msgid "No column selected." msgstr "未選定欄位。" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追蹤報告" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format -#| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已建立版本 %1$s,%2$s 的追蹤已啓用。" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format -#| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "在版本 %2$s 已停用 %1$s 的追蹤。" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format -#| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "在版本 %2$s 已啟用 %1$s 的追。" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 指令已執行。" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "您可以透過建立一個臨時資料庫來執行這個匯出。請確保您有足夠的權限。" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "如果您不需要,請註解以下兩行。" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 指令已匯出。請複製或執行它。" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 程式碼)" -#: tbl_tracking.php:454 -#| msgid "Track these data definition statements:" +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "追蹤資料定義已刪除" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "追蹤這些資料模擬的語句:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "追蹤指令" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "顯示自 %2$s 起至 %3$s 使用者 %4$s 執行的 %1$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "刪除此資料表的追蹤資料" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "沒有資料庫" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "日期" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "資料定義指令" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "資料操作指令" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 匯出 (檔案下載)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 匯出" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "該選項將導致目前表的結構和資料被替換。" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "執行 SQL 指令" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "匯出爲 %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "停用 %s.%s 的追蹤" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "立即停用" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "啓用 %s.%s 的追蹤" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "立即啓用" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "爲 %2$s.%3$s 建立版本 %1$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "追蹤下列資料定義指令:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "追蹤下列資料操作指令:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "建立版本" @@ -12803,8 +12587,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -12939,8 +12723,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -13668,6 +13452,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 已被設置為 0" +#~ msgid "Headers every %s rows" +#~ msgstr "每 %s 列顯示欄位標題" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" @@ -13951,13 +13738,13 @@ msgstr "concurrent_insert 已被設置為 0" #~ 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['LeftFrameTableSeparator'] directive, so only the folder is called " -#~ "like the alias, the table name itself stays unchanged" +#~ "only used to split/nest the tables according to the $cfg" +#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " +#~ "the alias, the table name itself stays unchanged" #~ msgstr "" -#~ "當設爲 [kbd]nested[/kbd] 時,資料表的別名僅根據 " -#~ "$cfg['LeftFrameTableSeparator'] 作分割/層疊用,所有只有目錄的名字像別名," -#~ "資料表自己的名字並不改變" +#~ "當設爲 [kbd]nested[/kbd] 時,資料表的別名僅根據 $cfg" +#~ "['LeftFrameTableSeparator'] 作分割/層疊用,所有只有目錄的名字像別名,資料" +#~ "表自己的名字並不改變" #~ msgid "Display table comment instead of its name" #~ msgstr "顯示資料表備註而不顯示資料資料表名稱" @@ -14503,8 +14290,8 @@ msgstr "concurrent_insert 已被設置為 0" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "新增新使用者" From 805b465c0be65ca74b0aeb2239f85c60fd94f678 Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Wed, 19 Jun 2013 17:39:45 +0200 Subject: [PATCH 29/52] Translated using Weblate (Traditional Chinese) Currently translated at 88.0% (2353 of 2673) --- po/zh_TW.po | 207 ++++++++++++++++++++-------------------------------- 1 file changed, 78 insertions(+), 129 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index f8109e53a5..5fe49615eb 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-19 16:34+0200\n" +"PO-Revision-Date: 2013-06-19 17:39+0200\n" "Last-Translator: Tony Chen \n" "Language-Team: Traditional Chinese " "\n" @@ -5541,7 +5541,6 @@ msgid "Connect without password" msgstr "用空密碼連線" #: libraries/config/messages.inc.php:408 -#, fuzzy #| 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 " @@ -6164,7 +6163,6 @@ msgstr "CSV 使用 LOAD DATA" #: libraries/config/setup.forms.php:262 libraries/config/setup.forms.php:355 #: libraries/config/user_preferences.forms.php:160 #: libraries/config/user_preferences.forms.php:252 -#, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "OpenOffice 表格" @@ -6196,7 +6194,6 @@ msgstr "微軟 Word 2000" #: libraries/config/setup.forms.php:359 #: libraries/config/user_preferences.forms.php:256 -#, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" msgstr "OpenOffice 檔案" @@ -6488,13 +6485,13 @@ msgid "Git revision:" msgstr "" #: libraries/display_git_revision.lib.php:67 -#, fuzzy, php-format +#, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "%2$s 提交了 %1$s" #: libraries/display_git_revision.lib.php:75 -#, fuzzy, php-format +#, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" msgstr "%2$s 執筆於 %1$s" @@ -7925,10 +7922,9 @@ msgid "Structure:" msgstr "結構:" #: libraries/plugins/export/ExportMediawiki.class.php:84 -#, fuzzy #| msgid "Export contents" msgid "Export table names" -msgstr "要匯出資料表的名稱" +msgstr "匯出的資料表名稱" #: libraries/plugins/export/ExportMediawiki.class.php:90 #| msgid "horizontal (rotated headers)" @@ -8259,7 +8255,6 @@ msgstr "" "必須留空。" #: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31 -#, fuzzy #| msgid "" #| "LINUX ONLY: Launches an external application and feeds it the column data " #| "via standard input. Returns the standard output of the application. The " @@ -8283,12 +8278,11 @@ msgid "" "option, if set to 1, will prevent wrapping and ensure that the output " "appears all on one line (Default 1)." msgstr "" -"僅 LINUX:調用外部程序並透過標準輸入傳入欄位資料。返回此套用程序的標準輸出預" -"設爲 Tidy,可以很好的列印 HTML 程式碼。爲了安全起見,您需要手動編輯 " -"libraries/transformations/text_plain__external.inc.php 檔案來加入可以運行的工" -"具。第一個選項是您想要使用的程序編號,第二個選項是程序的參數。第三個參數如果" -"設爲 1 的話將會用 htmlspecialchars() 處理輸出 (預設爲 1)。第四個參數如果設爲 " -"1 的話,將禁止換行,確保所有內容顯示在一行中 (預設爲 1)" +"僅 LINUX:調用外部程序並透過標準輸入傳入欄位資料。返回此套用程序的標準輸出,預設爲 Tidy,可以很好的列印 HTML " +"程式碼。爲了安全起見,您需要手動編輯 " +"libraries/plugins/transformations/Text_Plain_External.class.php " +"檔案來加入可以運行的工具。第一個選項是您想要使用的程序編號,第二個選項是程序的參數。第三個參數如果設爲 1 的話將會用 " +"htmlspecialchars() 處理輸出 (預設爲 1)。第四個參數如果設爲 1 的話,將禁止換行,確保所有內容顯示在一行中 (預設爲 1)。" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -8658,10 +8652,9 @@ msgid "End" msgstr "結束" #: libraries/rte/rte_events.lib.php:519 -#, fuzzy #| msgid "complete inserts" msgid "On completion preserve" -msgstr "完整插入" +msgstr "完成時保留" #: libraries/rte/rte_events.lib.php:524 #: libraries/rte/rte_routines.lib.php:1042 @@ -10850,10 +10843,9 @@ msgid "Preset chart" msgstr "預設圖表" #: server_status_monitor.php:523 -#, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" -msgstr "狀態變數值" +msgstr "變數狀態" #: server_status_monitor.php:526 #| msgid "Select Tables" @@ -10941,10 +10933,9 @@ msgid_plural "%d minutes" msgstr[0] "%d 分" #: server_status_monitor.php:674 -#, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" -msgstr "開始觀察(monitor)" +msgstr "啟動監視" #: server_status_monitor.php:681 msgid "Instructions/Setup" @@ -10969,7 +10960,6 @@ msgid "Chart columns" msgstr "圖表欄位" #: server_status_monitor.php:733 -#, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "圖表排列" @@ -11016,7 +11006,6 @@ msgid "#" msgstr "" #: server_status_variables.php:78 server_variables.php:156 -#, fuzzy msgid "Filters" msgstr "過濾" @@ -12067,11 +12056,10 @@ msgid "Line" msgstr "折線圖" #: tbl_chart.php:161 -#, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" -msgstr "Spline" +msgstr "曲線圖" #: tbl_chart.php:163 msgctxt "Chart type" @@ -12147,7 +12135,6 @@ msgid "Invalid table name" msgstr "無效的資料資料表名稱" #: tbl_gis_visualization.php:114 -#, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "顯示可視化地理訊息" @@ -12317,32 +12304,29 @@ msgid "Tracking data definition successfully deleted" msgstr "追蹤資料定義已刪除" #: tbl_tracking.php:478 -#, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "追蹤這些資料模擬的語句:" +msgstr "追蹤資料操作已刪除" #: tbl_tracking.php:493 msgid "Tracking statements" msgstr "追蹤指令" #: tbl_tracking.php:524 tbl_tracking.php:672 -#, fuzzy, php-format +#, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "顯示自 %2$s 起至 %3$s 使用者 %4$s 執行的 %1$s %5$s" #: tbl_tracking.php:532 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "刪除此資料表的追蹤資料" +msgstr "刪除報表的追蹤資料列" #: tbl_tracking.php:546 -#, fuzzy #| msgid "No databases" msgid "No data" -msgstr "沒有資料庫" +msgstr "沒有資料" #: tbl_tracking.php:555 tbl_tracking.php:617 msgid "Date" @@ -12382,30 +12366,30 @@ msgid "Show versions" msgstr "查看版本" #: tbl_tracking.php:824 -#, fuzzy, php-format +#, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" -msgstr "停用 %s.%s 的追蹤" +msgstr "停用 %s 的追蹤" #: tbl_tracking.php:830 msgid "Deactivate now" msgstr "立即停用" #: tbl_tracking.php:840 -#, fuzzy, php-format +#, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" -msgstr "啓用 %s.%s 的追蹤" +msgstr "啓用 %s 的追蹤" #: tbl_tracking.php:846 msgid "Activate now" msgstr "立即啓用" #: tbl_tracking.php:859 -#, fuzzy, php-format +#, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "爲 %2$s 建立版本 %1$s" #: tbl_tracking.php:867 msgid "Track these data definition statements:" @@ -12476,10 +12460,9 @@ msgid "The uptime is only %s" msgstr "" #: libraries/advisory_rules.txt:56 -#, fuzzy #| msgid "Versions" msgid "Questions below 1,000" -msgstr "版本" +msgstr "前 1,000 個問題" #: libraries/advisory_rules.txt:59 msgid "" @@ -12494,16 +12477,15 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:61 -#, fuzzy, php-format +#, php-format #| msgid "Current connection" msgid "Current amount of Questions: %s" -msgstr "目前連線" +msgstr "目前問題總數: %s" #: libraries/advisory_rules.txt:63 -#, fuzzy #| msgid "Show SQL queries" msgid "Percentage of slow queries" -msgstr "顯示 SQL 查詢" +msgstr "緩慢查詢百分比" #: libraries/advisory_rules.txt:66 msgid "" @@ -12522,10 +12504,9 @@ msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" #: libraries/advisory_rules.txt:70 -#, fuzzy #| msgid "Flush query cache" msgid "Slow query rate" -msgstr "強制更新查詢快取" +msgstr "緩慢查詢率" #: libraries/advisory_rules.txt:73 msgid "" @@ -12540,10 +12521,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:77 -#, fuzzy #| msgid "SQL queries" msgid "Long query time" -msgstr "SQL 查詢" +msgstr "超長查詢時間" #: libraries/advisory_rules.txt:80 msgid "" @@ -12558,22 +12538,20 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:82 -#, fuzzy, php-format +#, php-format #| msgid "long_query_time is set to %d second(s)." msgid "long_query_time is currently set to %ds." -msgstr "long_query_time已設為%d秒" +msgstr "long_query_time 已設為 %d 秒。" #: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 -#, fuzzy #| msgid "Show query box" msgid "Slow query logging" -msgstr "顯示查詢框" +msgstr "緩慢查詢紀錄" #: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 -#, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." -msgstr "slow_query_log已啟用" +msgstr "已禁用緩慢查詢。" #: libraries/advisory_rules.txt:88 msgid "" @@ -12582,10 +12560,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:89 -#, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "log_slow_queries is set to 'OFF'" -msgstr "long_query_time已設為%d秒" +msgstr "log_slow_queries 已設為 'OFF'" #: libraries/advisory_rules.txt:95 msgid "" @@ -12594,16 +12571,14 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:96 -#, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "slow_query_log is set to 'OFF'" -msgstr "long_query_time已設為%d秒" +msgstr "slow_query_log 已設為 'OFF'" #: libraries/advisory_rules.txt:100 -#, fuzzy #| msgid "Select Tables" msgid "Release Series" -msgstr "選擇表" +msgstr "釋放序列" #: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." @@ -12617,16 +12592,15 @@ msgstr "" #: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 #: libraries/advisory_rules.txt:119 -#, fuzzy, php-format +#, php-format #| msgid "Create version" msgid "Current version: %s" -msgstr "建立版本" +msgstr "目前版本: %s" #: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 -#, fuzzy #| msgid "Version" msgid "Minor Version" -msgstr "版本" +msgstr "次要版本" #: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." @@ -12643,17 +12617,15 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" #: libraries/advisory_rules.txt:118 -#, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" -msgstr "您應升級到 %s %s 或更高版本。" +msgstr "您應升級到 MySQL 5.5 的一個穩定版本" #: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 #: libraries/advisory_rules.txt:135 -#, fuzzy #| msgid "Description" msgid "Distribution" -msgstr "說明" +msgstr "分佈" #: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." @@ -12692,10 +12664,9 @@ msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" #: libraries/advisory_rules.txt:142 -#, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" -msgstr "MySQL 字集" +msgstr "MySQL 架構" #: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." @@ -12714,16 +12685,14 @@ msgid "Available memory on this host: %s" msgstr "" #: libraries/advisory_rules.txt:153 -#, fuzzy #| msgid "Query cache" msgid "Query cache disabled" -msgstr "查詢快取" +msgstr "查詢快取已被禁用" #: libraries/advisory_rules.txt:156 -#, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." -msgstr "伺服器沒有響應" +msgstr "查詢快取並未啟用。" #: libraries/advisory_rules.txt:157 msgid "" @@ -12738,16 +12707,14 @@ msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" #: libraries/advisory_rules.txt:160 -#, fuzzy #| msgid "Query cache" msgid "Query caching method" -msgstr "查詢快取" +msgstr "查詢快取方法" #: libraries/advisory_rules.txt:163 -#, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." -msgstr "查詢快取" +msgstr "次佳的查詢快取方法。" #: libraries/advisory_rules.txt:164 msgid "" @@ -12765,10 +12732,10 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:167 -#, fuzzy, php-format +#, php-format #| msgid "Query cache" msgid "Query cache efficiency (%%)" -msgstr "查詢快取" +msgstr "查詢快取效能(%%)" #: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." @@ -12779,15 +12746,14 @@ msgid "Consider increasing {query_cache_limit}." msgstr "" #: libraries/advisory_rules.txt:172 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "The current query cache hit rate of %s%% is below 20%%" -msgstr "排序快取大小" +msgstr "查詢快取命中率 %s%% 低於 20%%" #: libraries/advisory_rules.txt:174 -#, fuzzy msgid "Query Cache usage" -msgstr "查詢快取" +msgstr "查詢快取使用狀況" #: libraries/advisory_rules.txt:177 #, php-format @@ -12808,16 +12774,14 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:181 -#, fuzzy #| msgid "Query cache" msgid "Query cache fragmentation" -msgstr "查詢快取" +msgstr "查詢快取片段狀況" #: libraries/advisory_rules.txt:184 -#, fuzzy #| msgid "The server is not responding" msgid "The query cache is considerably fragmented." -msgstr "伺服器沒有響應" +msgstr "這個查詢快取已支離破碎,不適合再使用。" #: libraries/advisory_rules.txt:185 msgid "" @@ -12846,12 +12810,11 @@ msgid "Query cache low memory prunes" msgstr "查詢快取" #: libraries/advisory_rules.txt:191 -#, fuzzy #| msgid "The amount of free memory for query cache." msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." -msgstr "查詢快取中空閒的記憶體總數" +msgstr "由於低記憶體關係,這個查詢快取將被移除。" #: libraries/advisory_rules.txt:192 msgid "" @@ -12868,10 +12831,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:195 -#, fuzzy #| msgid "Query cache" msgid "Query cache max size" -msgstr "查詢快取" +msgstr "查詢快取最大大小" #: libraries/advisory_rules.txt:198 msgid "" @@ -12886,16 +12848,15 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:200 -#, fuzzy, php-format +#, php-format #| msgid "Create version" msgid "Current query cache size: %s" -msgstr "建立版本" +msgstr "目前查詢快取大小: %s" #: libraries/advisory_rules.txt:202 -#, fuzzy #| msgid "Query results" msgid "Query cache min result size" -msgstr "查詢結果" +msgstr "查詢快取最小結果大小" #: libraries/advisory_rules.txt:205 msgid "" @@ -12919,16 +12880,14 @@ msgid "query_cache_limit is set to 1 MiB" msgstr "" #: libraries/advisory_rules.txt:211 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" -msgstr "允許建立臨時表" +msgstr "因排序建立的臨時表百分比" #: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." -msgstr "允許建立臨時表" +msgstr "太多排序產生的臨時表。" #: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222 msgid "" @@ -12944,23 +12903,21 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:218 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" -msgstr "允許建立臨時表" +msgstr "排序產生的臨時表比率" #: libraries/advisory_rules.txt:223 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." -msgstr "排序快取大小" +msgstr "平均臨時表: %s,此值應每小時小於1。" #: libraries/advisory_rules.txt:225 -#, fuzzy #| msgid "Textarea rows" msgid "Sort rows" -msgstr "文字框行" +msgstr "排序筆數" #: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." @@ -12980,16 +12937,14 @@ msgid "Sorted rows average: %s" msgstr "" #: libraries/advisory_rules.txt:233 -#, fuzzy #| msgid "There are no files to upload" msgid "Rate of joins without indexes" -msgstr "沒有可上傳的檔案" +msgstr "無索引的結合比率" #: libraries/advisory_rules.txt:236 -#, fuzzy #| msgid "There are no files to upload" msgid "There are too many joins without indexes." -msgstr "沒有可上傳的檔案" +msgstr "有太多的結合未使用索引。" #: libraries/advisory_rules.txt:237 msgid "" @@ -12998,22 +12953,20 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:238 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "Table joins average: %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "平均資料表結合: %s,此值應每小時小於1" #: libraries/advisory_rules.txt:240 -#, fuzzy #| msgid "There are no files to upload" msgid "Rate of reading first index entry" -msgstr "沒有可上傳的檔案" +msgstr "讀取第一個索引項目比率" #: libraries/advisory_rules.txt:243 -#, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of reading the first index entry is high." -msgstr "目前掛起的 fsync 日志檔案數" +msgstr "讀取第一個索引項目比率過髙。" #: libraries/advisory_rules.txt:244 msgid "" @@ -13026,22 +12979,20 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:245 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "Index scans average: %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "平均索引掃瞄: %s,此值應每小時小於1" #: libraries/advisory_rules.txt:247 -#, fuzzy #| msgid "Format of imported file" msgid "Rate of reading fixed position" -msgstr "匯入檔案的格式" +msgstr "讀取固定位置比率" #: libraries/advisory_rules.txt:250 -#, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of reading data from a fixed position is high." -msgstr "目前掛起的 fsync 日志檔案數" +msgstr "讀取資料固定位置比率過高。" #: libraries/advisory_rules.txt:251 msgid "" @@ -13058,16 +13009,14 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:254 -#, fuzzy #| msgid "Create table" msgid "Rate of reading next table row" -msgstr "建立資料表" +msgstr "讀取資料表下一筆比例" #: libraries/advisory_rules.txt:257 -#, fuzzy #| msgid "The current number of pending writes." msgid "The rate of reading the next table row is high." -msgstr "目前掛起的寫操作數" +msgstr "讀取資料表下一筆比例過高。" #: libraries/advisory_rules.txt:258 msgid "" @@ -13076,11 +13025,11 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:259 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "平均讀取資料表下一筆: %s,此值應每小時小於1" #: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" From b065bff077746eb52bd8758f7ed39f9e095f58db Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 19 Jun 2013 11:44:49 -0400 Subject: [PATCH 30/52] Change MaxRows default value to 25 to fit with the upcoming selector --- doc/config.rst | 2 +- libraries/config.default.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/config.rst b/doc/config.rst index 877271d93c..30110d510b 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -1559,7 +1559,7 @@ Browse mode .. config:option:: $cfg['MaxRows'] :type: integer - :default: 30 + :default: 25 Number of rows displayed when browsing a result set and no LIMIT clause is used. If the result set contains more rows, "Previous" and diff --git a/libraries/config.default.php b/libraries/config.default.php index 42ec0dd51a..2b3180be0a 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -1043,7 +1043,7 @@ $cfg['ShowAll'] = false; * * @global integer $cfg['MaxRows'] */ -$cfg['MaxRows'] = 30; +$cfg['MaxRows'] = 25; /** * default for 'ORDER BY' clause (valid values are 'ASC', 'DESC' or 'SMART' -ie From 98a8f0f7e9eb5f7abea3cf4b85c0823f199c2599 Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Wed, 19 Jun 2013 17:45:07 +0200 Subject: [PATCH 31/52] Translated using Weblate (Traditional Chinese) Currently translated at 88.3% (2359 of 2673) --- po/zh_TW.po | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 5fe49615eb..7b4052dcb8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-19 17:39+0200\n" +"PO-Revision-Date: 2013-06-19 17:45+0200\n" "Last-Translator: Tony Chen \n" "Language-Team: Traditional Chinese " "\n" @@ -13053,10 +13053,9 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "" #: libraries/advisory_rules.txt:269 -#, fuzzy #| msgid "Format of imported file" msgid "Percentage of temp tables on disk" -msgstr "匯入檔案的格式" +msgstr "臨時表在磁碟的比率" #: libraries/advisory_rules.txt:272 libraries/advisory_rules.txt:279 msgid "" @@ -13083,11 +13082,10 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:276 -#, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" -msgstr "%s 張資料表" +msgstr "暫存磁碟比率" #: libraries/advisory_rules.txt:280 msgid "" @@ -13108,10 +13106,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:296 -#, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝大小" #: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." @@ -13124,22 +13121,21 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:301 -#, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" -msgstr "排序快取大小" +msgstr "key_buffer_size 為零" #: libraries/advisory_rules.txt:303 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝曾用最大 %%" #: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝(索引快取) %% 使用過低。" #: libraries/advisory_rules.txt:307 libraries/advisory_rules.txt:315 msgid "" From 41d64851fade697470e13f8d2ede1758d52ee82d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 19 Jun 2013 12:36:04 -0400 Subject: [PATCH 32/52] Number of rows dropdown, to improve usability --- doc/config.rst | 2 +- libraries/DisplayResults.class.php | 20 ++++++++++++++------ libraries/config.default.php | 1 + libraries/config.values.php | 1 + 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/doc/config.rst b/doc/config.rst index 30110d510b..f31e183cb5 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -1563,7 +1563,7 @@ Browse mode Number of rows displayed when browsing a result set and no LIMIT clause is used. If the result set contains more rows, "Previous" and - "Next" links will be shown. + "Next" links will be shown. Possible values: 25,50,100,250,500. .. config:option:: $cfg['Order'] diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index 63182fec2c..1cf79826d2 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -905,12 +905,20 @@ class PMA_DisplayResults . '' - . __('Number of rows:') . ' ' . "\n" - . ''; + . __('Number of rows:') . ' ' + . ''; if ($GLOBALS['cfg']['ShowDisplayDirection']) { // Display mode (horizontal/vertical) diff --git a/libraries/config.default.php b/libraries/config.default.php index 2b3180be0a..67170402b2 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -1040,6 +1040,7 @@ $cfg['ShowAll'] = false; /** * Number of rows displayed when browsing a result set. If the result * set contains more rows, "Previous" and "Next". + * Possible values: 25,50,100,250,500 * * @global integer $cfg['MaxRows'] */ diff --git a/libraries/config.values.php b/libraries/config.values.php index dc29772318..c7e103a269 100644 --- a/libraries/config.values.php +++ b/libraries/config.values.php @@ -50,6 +50,7 @@ $cfg_db['NavigationBarIconic'] = array( false => __('Text'), 'both' => __('Both') ); +$cfg_db['MaxRows'] = array(25,50,100,250,500); $cfg_db['Order'] = array('ASC', 'DESC', 'SMART'); $cfg_db['RowActionLinks'] = array( 'none' => __('Nowhere'), From 5975fe43a22a98a7832d606dffa07efd46647d14 Mon Sep 17 00:00:00 2001 From: Tony Chen Date: Wed, 19 Jun 2013 17:50:15 +0200 Subject: [PATCH 33/52] Translated using Weblate (Traditional Chinese) Currently translated at 88.3% (2360 of 2673) --- po/zh_TW.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/zh_TW.po b/po/zh_TW.po index 7b4052dcb8..207dde3a05 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-19 17:45+0200\n" +"PO-Revision-Date: 2013-06-19 17:50+0200\n" "Last-Translator: Tony Chen \n" "Language-Team: Traditional Chinese " "\n" @@ -5080,14 +5080,13 @@ msgid "Minimum number of databases to display the database filter box" msgstr "顯示過濾框的最少資料庫數量" #: libraries/config/messages.inc.php:309 -#, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " #| "separator defined below)" msgid "" "Group items in the navigation tree (determined by the separator defined " "below)" -msgstr "只使用輕量級版本,以樹形顯示資料庫 (以下面的樹形分隔符號來顯示)" +msgstr "導覽樹中的群組項目 (以下面的樹形分隔符號來顯示)" #: libraries/config/messages.inc.php:310 msgid "Group items in the tree" From d6037fb513436b8bf21c6198971ca865e166576f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 19 Jun 2013 12:54:46 -0400 Subject: [PATCH 34/52] Complete rfe #1434 Improvements to the table browsing navigation bar --- ChangeLog | 1 + libraries/DisplayResults.class.php | 8 ++------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6844fd020a..564b970634 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,7 @@ phpMyAdmin - ChangeLog + rfe #1433 Support relations with ndbcluster - bug #3962 Proper escaping of JSON export + rfe #1328 Optional ReCAPTCHA support ++ rfe #1434 Improvements to the table browsing navigation bar 4.0.5.0 (not yet released) - bug #3977 Not detected configuration storage diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index 1cf79826d2..0f4c9dbc22 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -898,13 +898,9 @@ class PMA_DisplayResults . 'value="' . $html_sql_query . '" />' . '' - . '' - . __('Start row:') . ' ' . "\n" - . '' + . '" />' . __('Number of rows:') . ' ' . '